我正在尝试编译和链接调用 c 子例程的 Fortran 代码:
Fortran 代码:
program adder
integer a,b
a=1
b=2
call addnums(a,b)
stop
end program
C代码:
void addnums( int* a, int* b )
{
int c = (*a) + (*b); /* convert pointers to values, then add them */
printf("sum of %i and %i is %i\n", (*a), (*b), c );
}
我使用以下命令在 windows 环境中编译和链接。
ifort -c adder.f
cl -c addnums.c
ifort -o add adder.obj addnums.obj
我收到以下错误:
Microsoft (R) Incremental Linker Version 8.00.50727.762
Copyright (C) Microsoft Corporation. All rights reserved.
-out:add.exe
-subsystem:console
adder.obj
addnums.obj
adder.obj : error LNK2019: unresolved external symbol ADDNUMS referenced in function MAIN__
add.exe : fatal error LNK1120: 1 unresolved externals
请帮我解决这个问题?谢谢。