The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
482 B
17 lines
482 B
7 years ago
|
## Rust cross-compilation
|
||
|
|
||
|
Cross-compilation is now supported for Rust targets. Like other
|
||
|
cross-compilers, the Rust binary must be specified in your cross
|
||
|
file. It should specify a `--target` (as installed by `rustup target`)
|
||
|
and a custom linker pointing to your C cross-compiler. For example:
|
||
|
|
||
|
```
|
||
|
[binaries]
|
||
|
c = '/usr/bin/arm-linux-gnueabihf-gcc-7'
|
||
|
rust = [
|
||
|
'rustc',
|
||
|
'--target', 'arm-unknown-linux-gnueabihf',
|
||
|
'-C', 'linker=/usr/bin/arm-linux-gnueabihf-gcc-7',
|
||
|
]
|
||
|
```
|