0

我正在使用 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,支持armi386

将 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 文件一起使用?

4

1 回答 1

1

在 testFun.cpp 中,用 extern C 声明 C 函数

作为

extern "C" void test_c_fun();

C 风格的函数有不同的名称修饰规则。当您在 .cpp 文件中声明 C 函数时,它将将该函数视为 C++ 函数。

当您extern "C"在声明之前添加时,它将将该函数视为 C 函数。

于 2013-12-02T11:18:59.223 回答