source: mainline/meson/cross/arm64

Last change on this file was a42be38, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 6 years ago

Don't require the cross toolchain to be in $PATH

The toolchain in $PATH is still used when present, otherwise $CROSS_PREFIX, and finally /usr/local/cross are tried.

  • Property mode set to 100644
File size: 478 bytes
Line 
1# See http://mesonbuild.com/Cross-compilation.html
2
3[binaries]
4c = '@COMPPREFIX@gcc'
5cpp = '@COMPPREFIX@g++'
6ar = '@COMPPREFIX@ar'
7strip = '@COMPPREFIX@strip'
8nm = '@COMPPREFIX@nm'
9objcopy = '@COMPPREFIX@objcopy'
10objdump = '@COMPPREFIX@objdump'
11as = '@COMPPREFIX@as'
12ld = '@COMPPREFIX@ld'
13
14[properties]
15has_function_printf = true
16needs_exe_wrapper = true
17
18cc_arch = 'aarch64'
19bits = 64
20
21[host_machine]
22system = 'helenos'
23cpu_family = 'aarch64'
24cpu = 'aarch64'
25endian = 'little'
Note: See TracBrowser for help on using the repository browser.