0
votes
2answers
41 views
Reason and solution for error -”/usr/bin/ld: cannot find -levent “?
While compiling my program which is using libevent library I am using gcc option -levent. But I am getting this error -
/usr/bin/ld: cannot find -levent
I do not have libevent o …
1
vote
4answers
147 views
Easy check for unresolved symbols in shared libraries?
I am writing a fairly large C++ shared-object library, and have run into a small issue that makes debugging a pain:
If I define a function/method in a header file, and forget to c …
0
votes
3answers
287 views
QtCreator build returns collect2: ld returned exit status 1
While building several different projects in QtCreator, I have run across the following build error:
collect2: ld returned 1 exit status
After only changing a few things (that s …
0
votes
3answers
104 views
How to install gnu ld on mac os x 10.6 ?
Hi,
I'm having a lot of trouble compiling the otherwise excellent Contiki OS on my macbook pro (with mac os x 10.6). Contiki actually uses a lot of GNU-specific features and optio …
0
votes
2answers
111 views
ld cannot find library that is installed
Hi,
I'm sitting on an OpenSuse 11.1 x64 Box and I have a module that uses sigc++. When linking like this:
g++ [a lot of o's, L's and l's] -lsigc-2.0
I get
/usr/lib64/gcc/x86_6 …
0
votes
1answer
44 views
ld: linker error
ld: foo.o: relocation R_X86_64_PC32 against undefined symbol `bar' can not be used when making a shared object; recompile with -fPIC
I recompile with -fPIC and it still produces t …
0
votes
2answers
88 views
Using LD to link intermediate files
If I have a.o, b.o, and c.o, how do I make ld link them into d.o, which is then linked into my main object file? All that I want to have happen is that all the symbols in the input …
1
vote
1answer
214 views
How to get GCC linker command?
How can I get the command line GCC uses to invoke ld?
I have a problem for an AVR target where GCC apparently adds a linker option which I am trying to override, so I would like t …
0
votes
2answers
91 views
shared library file size
On creating a shared library the ./sl file size is coming out to be greater than 60KB.
There are 2 .o files whose total size is over 20KB.
Checked the utlities : ldd and elfdump t …
6
votes
13answers
338 views
What are the negative consequences of including and/or linking things that aren’t used by your binary?
Let's say that I have a binary that I am building, and I include a bunch of files that are never actually used, and do the subsequent linking to the libraries described by those in …
3
votes
5answers
1k views
Why do I have to define LD_LIBRARY_PATH with an export every time I run my application?
I have some code that uses some shared libraries (c code on gcc). When compiling I have to explicitly define the include and library directories using -I and -L, since they aren't …
0
votes
2answers
221 views
Strange ld error
I have a project consisting of two files, main.c and logoff.c. When I try to compile them I get this error:
gcc -c -g -Wall main.c
gcc -c -g -Wall logoff.c
gcc -o main -g -Wall m …
0
votes
2answers
136 views
ld can’t find c file
I have a assembly file and a c file compiled to .o files (start.o and main.o) and is trying to link them with ld. I'm using this command:
ld -T link.ld -o kernel.bin start.o main. …
0
votes
1answer
126 views
What causes linker only giving “ld returned 1 exit status” message?
I am using "--verbose" for ld in an attempt to get something useful for finding the problem, but it prints the error message amidst printing normal "--verbose" output:
[...blah - …
1
vote
2answers
449 views
Solaris linker equivalent to the GNU LD --export-dynamic flag
Like the question says: We are building on Linux using the GNU linker, and on Solaris using the solaris ld. GNU ld supports the --export-dynamic flag, which:
When creating a …
