mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 21:30:31 -04:00
- This Rust release comes with LLVM 10. Drop the LLVM patches we no longer need. - On FreeBSD 13.0 powerpc64 set the elfv2 ABI explicitly in the Rust target instead of patching LLVM. - Build LLVM with Ninja. It can shorten the build time slightly. - Force rebuild all consumers to catch regressions early Changes: https://blog.rust-lang.org/2020/07/16/Rust-1.45.0.html Tested by: mikael, pkubaj, tobik With hat: rust Differential Revision: https://reviews.freebsd.org/D25658
15 lines
415 B
Text
15 lines
415 B
Text
Unbreak build with Rust 1.45.0
|
|
|
|
error: options `-C embed-bitcode=no` and `-C lto` are incompatible
|
|
|
|
--- config/makefiles/rust.mk.orig 2020-06-22 22:55:02 UTC
|
|
+++ config/makefiles/rust.mk
|
|
@@ -47,7 +47,7 @@ cargo_rustc_flags = $(CARGO_RUSTCFLAGS)
|
|
ifndef DEVELOPER_OPTIONS
|
|
ifndef MOZ_DEBUG_RUST
|
|
# Enable link-time optimization for release builds.
|
|
-cargo_rustc_flags += -C lto
|
|
+cargo_rustc_flags +=
|
|
endif
|
|
endif
|
|
|