reworked RUSTFLAGS again to use clang+mold as linker, but removed the other flags

This commit is contained in:
Moritz Gmeiner 2023-07-27 13:02:17 +02:00
commit b2132272eb

View file

@ -5,7 +5,7 @@ CXXFLAGS="${COMMON_FLAGS}"
FCFLAGS="${COMMON_FLAGS}"
FFLAGS="${COMMON_FLAGS}"
RUSTFLAGS="-C target-cpu=native -C opt-level=3 -C debuginfo=0 -C debug-assertions=false -C overflow-checks=false -C panic=unwind -C link-arg=-fuse-ld=mold"
RUSTFLAGS="-C target-cpu=native -C opt-level=3 linker=clang -C link-arg=-fuse-ld=mold"
CC="clang"
CXX="clang++"