In comp.os.psos curious_one wrote: # hello, # # Compiling on powerpc, Any clue why dld barfs with "dld: warning: # Undefined symbol xyz and then dld: no output written"
Because some code calls xyz but the linker can not find any object file or library that defines xyz.
# and then make # halts with an error?
Because make is designed to halt on errors.
# shouldn't the warnings be ignored and make
No.
# continue as there weren't errors?
The purpose of make is to stop at the first error. Fix your build by providing whatever file has xyz at link time.
Regards,
Jens
Jens Schweikhardt http://www.schweikhardt.net/
SIGSIG -- signature too long (core dumped)