source: mainline/meson/cross/arm64@ 2c38a55b

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 2c38a55b 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: 752 bytes
Line 
1# See http://mesonbuild.com/Cross-compilation.html
2
3[binaries]
4c = 'aarch64-helenos-gcc'
5cpp = 'aarch64-helenos-g++'
6ar = 'aarch64-helenos-ar'
7strip = 'aarch64-helenos-strip'
8nm = 'aarch64-helenos-nm'
9objcopy = 'aarch64-helenos-objcopy'
10objdump = 'aarch64-helenos-objdump'
11as = 'aarch64-helenos-as'
12ld = 'aarch64-helenos-ld'
13
14[properties]
15has_function_printf = true
16needs_exe_wrapper = true
17c_args = [ '-D__LE__', '-fno-omit-frame-pointer' ]
18cpp_args = [ '-D__LE__', '-fno-omit-frame-pointer', '-fno-exceptions' ]
19c_link_args = [ '-nostdlib', '-lgcc' ]
20cpp_link_args = [ '-nostdlib', '-lgcc', '-fno-exceptions' ]
21cc_arch = 'aarch64'
22h_arch = 'arm64'
23bits = 64
24
25[host_machine]
26system = 'helenos'
27cpu_family = 'aarch64'
28cpu = 'aarch64'
29endian = 'little'
Note: See TracBrowser for help on using the repository browser.