source: mainline/meson/cross/mips32eb@ 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: 808 bytes
Line 
1# See http://mesonbuild.com/Cross-compilation.html
2
3[binaries]
4c = 'mips-helenos-gcc'
5cpp = 'mips-helenos-g++'
6ar = 'mips-helenos-ar'
7strip = 'mips-helenos-strip'
8nm = 'mips-helenos-nm'
9objcopy = 'mips-helenos-objcopy'
10objdump = 'mips-helenos-objdump'
11as = 'mips-helenos-as'
12ld = 'mips-helenos-ld'
13
14[properties]
15has_function_printf = true
16needs_exe_wrapper = true
17
18c_args = [ '-D__BE__', '-fno-omit-frame-pointer', '-msoft-float', '-mabi=32' ]
19cpp_args = [ '-D__BE__', '-fno-omit-frame-pointer', '-msoft-float', '-mabi=32', '-fno-exceptions' ]
20c_link_args = [ '-nostdlib', '-lgcc', '-msoft-float', '-mabi=32' ]
21cpp_link_args = [ '-nostdlib', '-lgcc', '-msoft-float', '-mabi=32' ]
22cc_arch = 'mips'
23h_arch = 'mips32'
24bits = 32
25
26[host_machine]
27system = 'helenos'
28cpu_family = 'mips'
29cpu = 'mips'
30endian = 'big'
Note: See TracBrowser for help on using the repository browser.