Displaying 1 result from an estimated 1 matches for "final_link".
2020 Feb 28
5
A Propeller link (similar to a Thin Link as used by ThinLTO)?
...ssembler level mitigation,
CFI and debug information generating, and probably other stuff.
(How will debug information be bloated?)
## Route 2: Add another link stage, similar to a Thin Link as used by ThinLTO.
Regular ThinLTO with minimized bitcode files:
all: compile thin_link thinlto_backend final_link
compile a.o b.o a.indexing.o b.indexing.o: a.c b.c
$(clang) -O2 -c -flto=thin -fthin-link-bitcode=a.indexing.o a.c
$(clang) -O2 -c -flto=thin -fthin-link-bitcode=b.indexing.o b.c
thin_link lto/a.o.thinlto.bc lto/b.o.thinlto.bc a.rsp: a.indexing.o b.indexing.o
$(clang) -fuse-ld=lld -Wl,-...