-R filename
--just-symbols=filename
Read symbol names and their addresses from filename, but do not relocate it or include it in the output. This allows your output file to refer symbolically to absolute locations of memory defined in other programs. You may use this option more than once.
For example, on my Mac, ld -R libsomething.a
or even gcc -Wl,-R,libsomething.a
doesn't work.