source: mainline/meson/cross/amd64_clang@ a64970e1

Last change on this file since a64970e1 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: 566 bytes
RevLine 
[5fd05862]1# See http://mesonbuild.com/Cross-compilation.html
2
3[binaries]
[a42be38]4c = '@COMPPREFIX@clang'
5cpp = '@COMPPREFIX@clang++'
6ar = '@COMPPREFIX@ar'
7strip = '@COMPPREFIX@strip'
8nm = '@COMPPREFIX@nm'
9objcopy = '@COMPPREFIX@objcopy'
10objdump = '@COMPPREFIX@objdump'
11as = '@COMPPREFIX@as'
12ld = '@COMPPREFIX@ld'
[5fd05862]13
14[properties]
15has_function_printf = true
16needs_exe_wrapper = true
[2483f28]17c_args = [ '-nostdlibinc' ]
18cpp_args = [ '-nostdlibinc' ]
19link_args = [ '-nostdlib' ]
[5fd05862]20
21cc_arch = 'amd64'
22bits = 64
23
24[host_machine]
25system = 'helenos'
26cpu_family = 'x86_64'
27cpu = 'x86_64'
28endian = 'little'
Note: See TracBrowser for help on using the repository browser.