user2536285
user2536285

Reputation: 51

/usr/bin/ld: client: hidden symbol `__dso_handle'

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?

Upvotes: 5

Views: 11340

Answers (1)

Employed Russian
Employed Russian

Reputation: 213506

hidden symbol `__dso_handle' in /usr/lib/gcc/i486-linux-gnu/4.4.3/crtbegin.o is referenced by DSO

Presumably libprint.so is that referencing DSO. You can confirm with:

nm ./libprint.so | grep __dso_handle

If that produces a U __dso_handle output, your libprint.so was built incorrectly (most likely you used ld -shared to link it. Don't do that, use the compiler driver, e.g. g++ -shared ... instead).

Upvotes: 6

Related Questions