ANSI-C功率函数和类型铸件

d8tt03nd  于 2023-03-22  发布在  其他
关注(0)|答案(1)|浏览(69)

下面这个简单的程序由于某些原因不能编译。它说“未定义pow的引用”,但包含了数学模块,我用-lm标志编译它。如果我使用pow,如pow(2.0,4.0),它会编译,所以我怀疑我的类型转换有问题。

#include <math.h>
#include <stdio.h>
#include <stdlib.h>

int main() {
   int i;

   for (i = 0; i < 10; i++) {
      printf("2 to the power of %d = %f\n", i, pow(2.0, (double)i));
   }

    return EXIT_SUCCESS;
}

下面是bulid日志:

**** Build of configuration Debug for project hello ****
make all 
Building file: ../src/hello.c
Invoking: GCC C Compiler
gcc -O0 -g -pedantic -Wall -c -lm -ansi -MMD -MP -MF"src/hello.d" -MT"src/hello.d" -o "src/hello.o" "../src/hello.c"
Finished building: ../src/hello.c

Building target: hello
Invoking: GCC C Linker
gcc  -o "hello"  ./src/hello.o   
./src/hello.o: In function `main':
/home/my/workspace/hello/Debug/../src/hello.c:19: undefined reference to `pow'
collect2: ld returned 1 exit status
make: *** [hello] Error 1

**** Build Finished ****
wbgh16ku

wbgh16ku1#

你告诉它在错误的地方使用数学库--你在编译时指定了数学库(在那里它没有帮助),但在链接时却忽略了它(在实际需要它的地方)。你需要在链接时指定它:

gcc -o "hello" ./src/hello.o -lm

相关问题