vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| HI! I use gcc 3.3.2 on Aix 5.2 and when i compile apache 2.0.49 i get following error: I build it with: CC=gcc ../configure --with-mpm=worker --enable-so --enable-maintainer-mode --enable- headers --enable-rewrite --enable-status --enable-info --enable-cgi --enable -usertrack --enable-mime-magic --enable-speling --enable-deflate ld: 0711-317 ERROR: Undefined symbol: .sqrt ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. collect2: ld returned 8 exit status make: The error code from the last command is 1. Any idea ? Thanks. |
| ||||
| "erri" <erricharl@hotmail.com> writes: > I use gcc 3.3.2 on Aix 5.2 and when i compile apache 2.0.49 i get following > error: .... > ld: 0711-317 ERROR: Undefined symbol: .sqrt That's a *link* error, not a compile error. You need to add '-lm' to the failing link line. [Why it isn't there already I don't know.] Cheers, -- In order to understand recursion you must first understand recursion. Remove /-nsp/ for email. |