I am trying to link with a shared lib in my C++ program.
command I used: g++ -o client Client.cpp -L. -lprint
Following is the error:
/usr/bin/ld: client: hidden symbol `__dso_handle' in /usr/lib/gcc/i486-linux-gnu/4.4.3/crtbegin.o is referenced by DSO
/usr/bin/ld: final link failed: Nonrepresentable section on output
collect2: ld returned 1 exit status
How can I resolve this error?
Presumably
libprint.so
is that referencing DSO. You can confirm with:If that produces a
U __dso_handle
output, yourlibprint.so
was built incorrectly (most likely you usedld -shared
to link it. Don't do that, use the compiler driver, e.g.g++ -shared ...
instead).