vote up 0 vote down star

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 - dump of linker script...]
attempt to open blah1.o succeeded
blah1.o
attempt to open blah2.o succeeded
blah2.o
[...blah - more opens that succeeded...]
attempt to open blah9.o succeeded
blah9.o
attemcollect2: ld returned 1 exit status

Invoked by:

gcc blah1.o [...blah...] blah9.o blahLib1.a blahLib2.a -g -lc -nostdlib -Wl,--warn-constructors -fpic -fno-pic -Wl,-q -Wl,-gc-sections -Wl,--verbose -T blahScript.ld -lm -o blahProgram.elf
flag

36% accept rate
Have you found what was the problem? – Igor Krivokon Jun 15 at 23:47
Unfortunately no. I haven't worked on that stuff since then, though, so I can't say I've been actively trying to figure out it lately. The custom script works on other people's machines, so it wasn't that. It must be something odd with my build environment. – Jim Buck Jun 16 at 1:32

1 Answer

vote up 1 vote down

It's a generic error. Usually caused by undefined reference to a symbol.

I don't think you need --verbose to see the error. ld should print the cause of the error in any case. Try to run it without --verbose and carefully examine every line of the output.

link|flag
That's the strange part - there is no other printed text whatsoever. Just the "ld returned 1 exist status". – Jim Buck May 27 at 23:03
What is the command line you're running? – Igor Krivokon May 27 at 23:49
Updated OP with the command invoked. – Jim Buck May 28 at 2:14
You could try to add this option: -Wl,--unresolved-symbols=report-all However, this should be default anyway. Hmm... Another thing - you're using a custom linker script (blahScript.ld). I don't know how linkers respond to errors in the script; double check the script contents. – Igor Krivokon May 28 at 2:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.