mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
39 lines
870 B
TOML
39 lines
870 B
TOML
[llvm]
|
|
link-shared = true
|
|
|
|
[build]
|
|
cargo = "/usr/bin/cargo"
|
|
rustc = "/usr/bin/rustc"
|
|
python = "python"
|
|
extended = true
|
|
sanitizers = false
|
|
profiler = true
|
|
local-rebuild = false
|
|
|
|
[install]
|
|
prefix = "/usr"
|
|
|
|
[rust]
|
|
# LLVM crashes when passing an object through ThinLTO twice. This is triggered when using rust
|
|
# code in cross-language LTO if libstd was built using ThinLTO.
|
|
# http://blog.llvm.org/2019/09/closing-gap-cross-language-lto-between.html
|
|
# https://github.com/rust-lang/rust/issues/54872
|
|
codegen-units-std = 1
|
|
|
|
debuginfo-level = 0
|
|
|
|
channel = "stable"
|
|
|
|
rpath = false
|
|
|
|
[target.x86_64-unknown-linux-gnu]
|
|
llvm-config = "/usr/bin/llvm-config"
|
|
|
|
[target.aarch64-unknown-linux-gnu]
|
|
llvm-config = "/usr/bin/llvm-config"
|
|
|
|
[target.armv7-unknown-linux-gnueabihf]
|
|
llvm-config = "/usr/bin/llvm-config"
|
|
|
|
[target.arm-unknown-linux-gnueabihf]
|
|
llvm-config = "/usr/bin/llvm-config"
|