В Интернете много вопросов по этому поводу, но я не смог решить свою проблему.Я изучал это в течение нескольких дней.
Я хочу запустить простой класс C ++ в проекте Swift, чтобы следовать этому уроку: http://www.swiftprogrammer.info/swift_call_cpp.html. По сути, я выполнил следующие шаги:
- Создание
junk.cpp
и junk.h
файлов - Компиляция с использованием
g++ or/and clang++
- Создание файла .a с:
$ ar r libjunkcpp.a junk.o
ranlib libjunkcpp.a
- Связано с Xcode в
Build Phases -> Link Binary With Libraries -> Add
При компиляции возникают следующие ошибки:
Undefined symbols for architecture x86_64:
"A::getInt()", referenced from:
_getIntFromCPP in wrapper.o
"A::A(int)", referenced from:
_getIntFromCPP in wrapper.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
junk.h
class A {
public:
A(int);
int getInt();
private:
int m_Int;
};
junk.cpp
#include "junk.h"
A::A(int _i) : m_Int(_i) {}
int A::getInt() {
return m_Int
}
wrapper.cpp
#include "junk.h"
extern "C" int getIntFromCPP() {
// Create an instance of A, defined in
// the library, and call getInt() on it:
return A(1234).getInt();
}
мост.ч
int getIntFromCPP();