Merge branch 'rustbuild-llvm-targets' of https://github.com/xen0n/rust into rollup

This commit is contained in:
Alex Crichton 2016-12-29 17:28:19 -08:00
commit ebea2ea34f
3 changed files with 21 additions and 2 deletions

View file

@ -42,6 +42,17 @@
# example.
#ninja = false
# LLVM targets to build support for.
# Note: this is NOT related to Rust compilation targets. However, as Rust is
# dependent on LLVM for code generation, turning targets off here WILL lead to
# the resulting rustc being unable to compile for the disabled architectures.
# Also worth pointing out is that, in case support for new targets are added to
# LLVM, enabling them here doesn't mean Rust is automatically gaining said
# support. You'll need to write a target specification at least, and most
# likely, teach rustc about the C ABI of the target. Get in touch with the
# Rust team and file an issue if you need assistance in porting!
#targets = "X86;ARM;AArch64;Mips;PowerPC;SystemZ;JSBackend;MSP430;Sparc"
# =============================================================================
# General build configuration options
# =============================================================================