Search found 2 matches

by vilhelmgray
Apr 18, 2019 6:23
Forum: General
Topic: Link without strip
Replies: 2
Views: 584

Re: Link without strip

Maybe by adding : --strip-debug (for the linker) with the g option --strip-debug -> Omit debugger symbol information (but not all symbols) from the output file. Thank you, it looks like this works. I was able to accomplish what I wanted with the following line: $ fbc -g -Wl --strip-debug foobar.bas...
by vilhelmgray
Apr 16, 2019 9:54
Forum: General
Topic: Link without strip
Replies: 2
Views: 584

Link without strip

It looks like fbc calls ld with the " --strip-all " option by default. Is there a way to link without stripping all symbols? $ fbc foobar.bas $ file foobar foobar: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for GNU/Linu...