Hi Christian,
2012/11/23 Fri 11:50:49 UTC+9 Heptite:
> And yet I still get the undefined reference to _pow error, regardless
> of which version of gcc I use.
Hmm, strange.
The symbol _pow is usually defined in a library libmsvcrt.a which
is linked by default.
Can you compile a program just using pow()?
For example:
$ cat a.c
#include <math.h>
int main()
{
return (int) pow(2, 3);
}
$ i686-pc-mingw32-gcc a.c (or gcc-3 -mno-cygwin a.c)
$ ./a; echo $?
8
Thanks,
Ken Takata
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php