Tagged Questions
22
votes
7answers
767 views
How can adding a function call cause other symbols to become undefined when linking?
Hey Guys, I'm hoping someone will be able to help troubleshoot what I think is a linker script issue.
I'm encountering a strange problem after adding a call to a new function. Without the function ...
6
votes
3answers
273 views
Generating link-time error for deprecated functions
Is there a way with gcc and GNU binutils to mark some functions such that they will generate an error at link-time if used? My situation is that I have some library functions which I am not removing ...
4
votes
1answer
177 views
Does the order of -l and -L options in the GNU linker matter?
The -l option tells the linker to search the libraries in the standard dirs.
And with -L, we can specify our own library directories for searching.
Question: Does the sequence of order matters for ...
3
votes
0answers
90 views
Adding to the *end* of the gnu ld library search paths
I know how to add to GNU ld's library search path using the -Ldir option and use it extensively. But as far as I can tell from reading the manuals of gcc and ld, there is no way to add to the end of ...
2
votes
0answers
78 views
MIPS, ELF and partial linking
I have a big software project with a complicated build process, which works like this:
Compile individual source files.
Partially link object files for each module together into another .o using ld ...
2
votes
1answer
447 views
How to deal with recursive dependencies between static libraries using the binutils linker?
I'm porting an existing system from Windows to Linux. The build is structured with multiple static libraries. I ran into a linking error where a symbol (defined in libA) could not be found in an ...
1
vote
3answers
74 views
How can I remove linked library from executable file
All.
Someone created an executable file.
# ldd test_bin
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x4082d000)
libA.so.0 => /usr/lib/libA.so.0 (0x408fe000)
libB.so.0 => ...
1
vote
1answer
45 views
ar command line length
I have an extremely long command line given to ar (android ar exactly) by bjam, and ar just corrupts a file path and complains that file does not exist.
Is there a way to make ar allocate a bigger ...
1
vote
1answer
149 views
Injecting sections into GNU ld script; script compatibility between versions of binutils.
I'm building something like in the question How to collect data from different .a files into one array? How to keep sections in .a files with ld script?, i.e. arrays composed during link-time out of ...
0
votes
1answer
202 views
Clever uses of linker scripts?
A great comment on my answer describing how to use linker scripts to make a ctor-like function list pointed out that recent GNU ld has much improved support for grafting new sections into system ...
0
votes
2answers
669 views
Trying to no-op an instruction
Is it possible using GNU tools (gcc, binutils, etc) to modify all occurrences of an assembly instruction into a no-op? Specifically, gcc with the -pg option generates the following assembly (ARM):
...