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