source: mainline/meson/cross/ppc32@ 5fd05862

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 5fd05862 was 5fd05862, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 6 years ago

Convert uspace to meson

  • Property mode set to 100644
File size: 839 bytes
RevLine 
[5fd05862]1# See http://mesonbuild.com/Cross-compilation.html
2
3[binaries]
4c = 'ppc-helenos-gcc'
5cpp = 'ppc-helenos-g++'
6ar = 'ppc-helenos-ar'
7strip = 'ppc-helenos-strip'
8nm = 'ppc-helenos-nm'
9objcopy = 'ppc-helenos-objcopy'
10objdump = 'ppc-helenos-objdump'
11as = 'ppc-helenos-as'
12ld = 'ppc-helenos-ld'
13
14[properties]
15has_function_printf = true
16needs_exe_wrapper = true
17
18c_args = [ '-D__BE__', '-fno-omit-frame-pointer', '-m32', '-Wa,-a32', '-mcpu=powerpc' ]
19cpp_args = [ '-D__BE__', '-fno-omit-frame-pointer', '-m32', '-Wa,-a32', '-mcpu=powerpc', '-fno-exceptions' ]
20c_link_args = [ '-nostdlib', '-lgcc', '-m32', '-Wl,-z,max-page-size=0x1000' ]
21cpp_link_args = [ '-nostdlib', '-lgcc', '-m32', '-Wl,-z,max-page-size=0x1000' ]
22cc_arch = 'ppc'
23h_arch = 'ppc32'
24bits = 32
25
26[host_machine]
27system = 'helenos'
28cpu_family = 'ppc'
29cpu = 'powerpc'
30endian = 'big'
Note: See TracBrowser for help on using the repository browser.