This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
#include<math.h> #include<stdio.h>
int main() { printf("%lf\n", acos(0.5)); return 0; }
nextstep[Tests]$xgcc acos_test.c -o acos_test <built-in>:0: warning: '__builtin_acos' used but never defined /NextDeveloper/Headers/ansi/math.h:55: warning: 'acos' used but never defined
Also, looking at the preprocessor output may help. Try this: xgcc -E acos_test.c Then search for acos to see if there is nothing wierd.
-- Vincent Rivière
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |