Remove linker flag PIE due to failing Chromium compilation.

This commit is contained in:
inference 2022-09-25 21:37:52 +01:00
parent 93911c21ae
commit a4b6417d08

View File

@ -1,5 +1,5 @@
## Hardening flags.
LD_SEC="-Wl,-pie -Wl,--strip-all -Wl,-z,defs -Wl,-z,now -Wl,-z,relro -L/usr/local/lib -lhardened_malloc"
LD_SEC="-Wl,--strip-all -Wl,-z,defs -Wl,-z,now -Wl,-z,relro -L/usr/local/lib -lhardened_malloc"
## Linker flags.
LDFLAGS="-fuse-ld=lld -rtlib=compiler-rt -unwindlib=libunwind -Wl,--thinlto-jobs=4 ${LD_SEC}"