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