undefined reference under suse 9.0

undefined reference under suse 9.0

tcorbard's picture

Hello,
A code that use to compile with ifc, now produce the following
at compilation time.

/tmp/ifcLXalxY.o(.text+0x1500c): rfrence indfinie vers des_
/tmp/ifcLXalxY.o(.text+0x150cc): rfrence indfinie vers des_
/tmp/ifcLXalxY.o(.text+0x150e5): rfrence indfinie vers des_
/tmp/ifcLXalxY.o(.text+0x17778): rfrence indfinie vers list_
/tmp/ifcLXalxY.o(.text+0x18a38): rfrence indfinie vers list_
/tmp/ifcLXalxY.o(.text+0x1a9f9): rfrence indfinie vers des_
/tmp/ifcLXalxY.o(.text+0x1aa12): rfrence indfinie vers des_
/tmp/ifcLXalxY.o(.text+0x1ca1c): rfrence indfinie vers add_ascii_
/tmp/ifcLXalxY.o(.text+0x1ca38): rfrence indfinie vers output_

I recently update my system from Suse 8.1 to 9.0.
Is there any library I should link with for these to be found?
Thanks,
Thierry

2 posts / 0 new
Last post
For more complete information about compiler optimizations, see our Optimization Notice.
cfroemmel@hotmail.com's picture



tcorbard wrote:
Hello,
A code that use to compile with ifc, now produce the following
at compilation time.

/tmp/ifcLXalxY.o(.text+0x1500c): rfrence indfinie vers des_
/tmp/ifcLXalxY.o(.text+0x150cc): rfrence indfinie vers des_
/tmp/ifcLXalxY.o(.text+0x150e5): rfrence indfinie vers des_
/tmp/ifcLXalxY.o(.text+0x17778): rfrence indfinie vers list_
/tmp/ifcLXalxY.o(.text+0x18a38): rfrence indfinie vers list_
/tmp/ifcLXalxY.o(.text+0x1a9f9): rfrence indfinie vers des_
/tmp/ifcLXalxY.o(.text+0x1aa12): rfrence indfinie vers des_
/tmp/ifcLXalxY.o(.text+0x1ca1c): rfrence indfinie vers add_ascii_
/tmp/ifcLXalxY.o(.text+0x1ca38): rfrence indfinie vers output_

I recently update my system from Suse 8.1 to 9.0.
Is there any library I should link with for these to be found?
Thanks,
Thierry




No, this is no problem of linking against a library. It looks as if the "-assume underscore" option for external procedures was used. Try to use "-assume nounderscore" when compiling your code. Have a look at the User Guide (Vol. 1), page 76.

HTH,

Frank

Login to leave a comment.