"Raymond C. Maple" wrote:
OK, I give up. Which library is the function __setfpucw in? The man page does not say. Running strings on libc.a shows that its name occurs in that library, and 'ar t libc.a' shows that it contains a module named setfpucw.o. But when I try to call the function, I get an unresolved reference error in the linking stage.
The best tool to use to look into libraries is nm, the result is: setfpucw.o: 00000000 T __setfpucw that is libc.a includes setfpucw.o which defines label __setfpucw in the Text segment. However the C compiler adds an _ when it generates a label so it really should be _setfpucw that is called and not __setfpucw as the man page says. /Michael -- To unsubscribe send e-mail to suse-linux-e-unsubscribe@suse.com For additional commands send e-mail to suse-linux-e-help@suse.com Also check the FAQ at http://www.suse.com/Support/Doku/FAQ/