【发布时间】:2019-05-15 11:48:06
【问题描述】:
我需要在我的 C 程序中使用一些 C++ 代码,这些代码必须与 arm-none-eabi 工具链交叉编译。我首先尝试以下简单的程序:
main.c
#include "misc.h"
int main(){
say_hello();
return 0;
}
杂项.h
#ifndef _MISC_H_
#define _MISC_H_
/**
* \brief Prints hello to stdout
*/
void say_hello();
#endif /* _MISC_H_ */
misc.c
/* C++ implementation */
#include <iostream>
using namespace std;
void cpp_say_hello(){
cout << "Hello world!" << endl;
}
/* C wrapper */
extern "C"{
#include "misc.h"
void say_hello(){
cpp_say_hello();
}
}
生成文件
CFLAGS += -lstdc++
CXXFLAGS += -c
hello_world_mix: misc.o main.c
$(CC) $(CFLAGS) $^ -o $@
misc.o: misc.cpp
$(CXX) $(CXXFLAGS) $^ -o $@
clean:
rm -f *.o
rm -f *~
当我本地编译它时(通过简单地做'make')它工作得很好。但是,如果我尝试使用以下代码进行交叉编译:
CC=arm-none-eabi-gcc CXX=arm-none-eabi-g++ CFLAGS=--specs=nosys.specs make
这是我获得的未定义引用:
arm-none-eabi-gcc --specs=nosys.specs -lstdc++ misc.o main.c -o hello_world_mix
/usr/lib/gcc/arm-none-eabi/8.2.0/../../../../arm-none-eabi/bin/ld: misc.o: in function `cpp_say_hello()':
misc.cpp:(.text+0x34): undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*)'
/usr/lib/gcc/arm-none-eabi/8.2.0/../../../../arm-none-eabi/bin/ld: misc.cpp:(.text+0x44): undefined reference to `std::ostream::operator<<(std::ostream& (*)(std::ostream&))'
/usr/lib/gcc/arm-none-eabi/8.2.0/../../../../arm-none-eabi/bin/ld: misc.cpp:(.text+0x5c): undefined reference to `std::cout'
/usr/lib/gcc/arm-none-eabi/8.2.0/../../../../arm-none-eabi/bin/ld: misc.cpp:(.text+0x60): undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&)'
/usr/lib/gcc/arm-none-eabi/8.2.0/../../../../arm-none-eabi/bin/ld: misc.o: in function `__static_initialization_and_destruction_0(int, int)':
misc.cpp:(.text+0xb4): undefined reference to `std::ios_base::Init::Init()'
/usr/lib/gcc/arm-none-eabi/8.2.0/../../../../arm-none-eabi/bin/ld: misc.cpp:(.text+0xe4): undefined reference to `std::ios_base::Init::~Init()'
collect2: error: ld returned 1 exit status
make: *** [Makefile:5: hello_world_mix] Error 1
我在这里错过了什么?
【问题讨论】:
-
库的顺序很重要。如果源文件或目标文件
A依赖于库B,那么您必须与A链接first。或者让您自己更轻松地使用g++进行链接。