mars_cfeng 发表于 2016-11-25 00:59:02

Call Fortran subroutine from C encounter“Undefined ... ”

I just want to test mixed programming with C/F, but i failed.
F subroutine subf.f90
Integer Function Add(A,B)Bind(C,Name="Add")!//要返回的话,请用 Function
use , Intrinsic :: ISO_C_Binding
implicit none
integer , value :: A , B !/c#默认是传值,而fortran默认传址。因此要用value修饰
Add = a + b !// Add(函数名)用于返回,而不能写 return a+b
end Function Add
C main test.cpp
#include <stdio.h>
extern "C" int Add(int A,int B);
int main()
{
      int c = Add(1,2);
      printf("c=%d\n",c);
      return 0;
}
makfile
test: test.o subf.o
        icc -O2 -o test *.o
test.o:
        icc -c test.c
subf.o:
        ifort -c subf.f90
ERR
test.o: In function `main':
test.cpp:(.text+0x35): undefined reference to `Add(int, int)'
Makefile:5: recipe for target 'test' failed

where did it all go wrong?

fcode 发表于 2016-11-25 09:34:37

我没有装 icc ,也没有用过 icc
我试着用 gfortran 和 gcc 编译,是一切 OK 的。

我想,你是不是应该用 icpc 来代替 icc ?如果你的扩展名是 test.cpp 的话。
I did not install ICC , eh , I've never used it...
I tried to compile with gfortran and GCC , all OK.
I think you should use ICPC instead of ICC? If your extension is test.cpp.


mars_cfeng 发表于 2016-11-26 01:10:22

谢谢群主!一直没来得及回复,问题解决了。早上醒来 重新跑了一下就可以了。。。

mars_cfeng 发表于 2016-11-26 01:10:59

fcode 发表于 2016-11-25 09:34
我没有装 icc ,也没有用过 icc
我试着用 gfortran 和 gcc 编译,是一切 OK 的。



icc/icpc 都是可以的。
页: [1]
查看完整版本: Call Fortran subroutine from C encounter“Undefined ... ”