什么错
for (level = 1; level <= log2((double)size); level++)
^
看起来似乎使用log2()
但什么是错? 我使用它的openmpi代码实际上,但是评论此行修复的东西。
完整的源代码 ( http://pastie.org/7559178 )见行40
[jiewmeng@JM Assign3]$ mpicc -o cpi cpi.c && mpirun -np 16 cpi
/usr/bin/ld: /tmp/cca9x4he.o: undefined reference to symbol 'log2@@GLIBC_2.2.5'
/usr/bin/ld: note: 'log2@@GLIBC_2.2.5' is defined in DSO /usr/lib/libm.so.6 so try adding it to the linker command line
/usr/lib/libm.so.6: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status
好像log2(4)
工作,但我不能在一个变量传递?