简体   繁体   English

在C,C ++和Fortran中混合代码

[英]Mixing code in C, C++, and Fortran

I've been playing around with mixing code in C, C++, and Fortran. 我一直在玩C,C ++和Fortran中的混合代码。 One simple test I have involves a main program in C++ ( cppprogram.C ): 我有一个简单的测试涉及C ++中的cppprogram.Ccppprogram.C ):

#include <iostream>
using namespace std;
extern "C" {
  void ffunction_(float *a, float *b);
}

extern "C" {
  void cfunction(float *a, float *b);
}

void cppfunction(float *a, float *b);

int main() {
  float a=1.0, b=2.0;

  cout << "Before running Fortran function:" << endl;
  cout << "a=" << a << endl;
  cout << "b=" << b << endl;

  ffunction_(&a,&b);

  cout << "After running Fortran function:" << endl;
  cout << "a=" << a << endl;
  cout << "b=" << b << endl;

  cout << "Before running C function:" << endl;
  cout << "a=" << a << endl;
  cout << "b=" << b << endl;

  cfunction(&a,&b);

  cout << "After running C function:" << endl;
  cout << "a=" << a << endl;
  cout << "b=" << b << endl;

  cout << "Before running C++ function:" << endl;
  cout << "a=" << a << endl;
  cout << "b=" << b << endl;

  cppfunction(&a,&b);

  cout << "After running C++ function:" << endl;
  cout << "a=" << a << endl;
  cout << "b=" << b << endl;

  return 0;
}

...calling procedures in C, C++, and Fortran: ...在C,C ++和Fortran中调用过程:

C ( cfunction1.c ) C( cfunction1.c

void cfunction(float *a, float *b) {
  *a=7.0;
  *b=8.0;
}

C++ ( cppfunction1.C ) C ++( cppfunction1.C

extern "C" {
  void cppfunction(float *a, float *b);
}

void cppfunction(float *a, float *b) {
  *a=5.0;
  *b=6.0;
}

Fortran ( ffunction.f ) Fortran( ffunction.f

subroutine ffunction(a,b)
a=3.0
b=4.0
end

Here are the commands I use to make the object files and link them together: 以下是我用来制作目标文件并将它们链接在一起的命令:

g++ -c cppprogram.C
gcc -c cfunction1.c
g++ -c cppfunction1.C
gfortran -c ffunction.f
g++ -o cppprogram cppprogram.o cfunction1.o cppfunction1.o ffunction.o

Here is my error: 这是我的错误:

cppprogram.o: In function `main':
cppprogram.C:(.text+0x339): undefined reference to `cppfunction(float*, float*)'
collect2: error: ld returned 1 exit status

I know that internally the compiler sometimes wants underscores appended to the file names, but I thought I had taken care of that. 我知道编译器内部有时会想要将下划线附加到文件名中,但我认为我已经处理过了。 This can be determined with the nm command. 这可以使用nm命令确定。 There is a small mistake somewhere...does anyone see it? 某处有一个小错误......有人看到了吗? Many thanks in advance. 提前谢谢了。

Update : 更新

You declare cppfunction as extern "C" in cppfunction1.C , but in cppprogram.C you don't declare it as extern "C" . 声明cppfunction作为extern "C"cppfunction1.C ,但在cppprogram.C不声明它extern "C" Since main is C++ you don't need to declare cppfunction as extern "C" in cppfunction1.C unless you want to be able to call it from C or Fortran. 由于mainC++ ,你不需要申报cppfunction作为extern "C"cppfunction1.C除非你想能够从C或Fortran语言调用它。

Remove the extern "C" from cppfunction1.C . cppfunction1.C删除extern "C"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM