我正在使用 xcode 用 C 创建一个静态库,我似乎得到了一个错误Undefined symbols for architecture i386
。
静态库项目,包括三个文件:fun.c
, testFun.cpp
,testFun.h
这是testFun.cpp
#include "testFun.h"
extern void test_c_fun();
void TestFun::test()
{
printf("# TestFun c++ # ");
test_c_fun();
}
这是fun.c
#include <stdio.h>
void test_c_fun()
{
printf("# test_c_fun #");
}
当我使用“IOS Device”和“iPhone Retina(4-inch)”构建时,我得到了两个 xa 文件。
使用lipo
带-create
参数的工具输出新的 xa,支持arm
和i386
。
将 xa 添加到我的项目中,并包含 testFun 头文件现在代码:
TestFun tf;
tf.test();
然后构建它,我得到这些错误
Undefined symbols for architecture i386: "test_c_fun()", referenced from: TestFun::test() in libstatistic.a(testFun.o) ld: symbol(s) not found for architecture i386
当我隐藏 c-fun 调用 (test_c_fun) 时,构建成功!
看起来像:
#include "testFun.h"
extern void test_c_fun();
void TestFun::test()
{
printf("# TestFun c++ # ");
//test_c_fun();
}
为什么它不能与 C 文件一起使用?