2008/10/28 Nikos Balkanas <[EMAIL PROTECTED]>: > > Undefined first referenced > symbol in file > __builtin_huge_val libwmlscript.a(wslexer.o) > ld: fatal: Symbol referencing errors. No output written to wmlscript/wmlsc > This is after I commented out the relevant code in wslexer.c and filled in > for a simple printf. Of interest is that in the CVS version HUGE_VAL is a > undefined pointer, whereas in the 1.4.1 version it is a float(correct).
HUGE_VAL is a standard C feature. And __builtin_huge_val() is a GCC-specific extension for implementing one. gcc had some troubles with math.h in solaris. Which gcc version are you using? M
