arm-none-eabi-gcc 在 C 中使用 C++ 代码:未定义的引用

arm-none-eabi-gcc using C++ code in C: undefined references

我需要在我的 C 程序中使用一些 C++ 代码,这些代码必须使用 arm-none-eabi 工具链进行交叉编译。我首先尝试以下简单程序:

main.c

#include "misc.h"

int main(){
    say_hello();
    return 0;
}

misc.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

我在这里错过了什么?

你 link 使用 CC,你必须 link 使用 CXX - 这不仅是而且你不应该添加每行参数到 CFLAGS, CXXFLAGS.

hello_world_mix: misc.o main.o
    $(CXX) $(CFLAGS) $^ -o $@

main.o: main.c
    $(CC) -c $(CFLAGS) $^ -o $@

misc.o: misc.cpp
    $(CXX) -c $(CXXFLAGS) $^ -o $@

clean:
    rm -f *.o
    rm -f *~

原因很可能是 -l 选项的顺序在 some GCC versions and not in others. 中可能很重要 - 但让 g++ 担心这一点更容易。