3

所以我有这个我想在 iOS 模拟器中测试的 Unity 应用程序。我在构建之前在 Unity 中选择了模拟器 sdk。我已经在 Play 商店中发布了该应用程序的 android 版本。

无论如何,我无法让它在 Xcode 中构建。我不断收到以下 3 个构建错误:

ld: warning: ignoring file /Users/myaccount/Desktop/untitled 
folder/Libraries/libChartboost.a, missing required architecture i386 in file
 /Users/danmelamed/Desktop/untitled folder/Libraries/libChartboost.a (2 slices)
ld: warning: ignoring file /Users/myaccount/Desktop/untitled 
folder/Libraries/libSoomlaIOSStore.a, missing required architecture i386 in file 
/Users/myaccount/Desktop/untitled folder/Libraries/libSoomlaIOSStore.a (2 slices)
Undefined symbols for architecture i386:
  "_OBJC_CLASS_$_CBAnalytics", referenced from:
      objc-class-ref in ChartBoostBinding.o
  "_OBJC_CLASS_$_Chartboost", referenced from:
      objc-class-ref in ChartBoostBinding.o
      objc-class-ref in ChartBoostManager.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

  "_OBJC_CLASS_$_CBAnalytics", referenced from:

      objc-class-ref in ChartBoostBinding.o

  "_OBJC_CLASS_$_Chartboost", referenced from:

      objc-class-ref in ChartBoostBinding.o

      objc-class-ref in ChartBoostManager.o

ld: symbol(s) not found for architecture i386

如何让 chartboost 在模拟器架构中运行?或者如果没有,我如何禁用 chartboost 以便在没有它的情况下测试我的应用程序?我没有任何 iOS 设备。所以我只能在模拟器上测试。

我还尝试让 Unity 中的常规 sdk 构建在 Xcode 中运行,但我遇到了不同的错误,我也需要处理这些错误。我收到了 Apple Mach O Linkers 的 12 个错误:

Undefined symbols for architecture armv7:
  "_iosLogin", referenced from:
      RegisterMonoModules() in RegisterMonoModules.o
  "_iosLogout", referenced from:
     RegisterMonoModules() in RegisterMonoModules.o
  "_iosInit", referenced from:
      RegisterMonoModules() in RegisterMonoModules.o
  "_iosSetShareDialogMode", referenced from:
      RegisterMonoModules() in RegisterMonoModules.o
  "_iosFeedRequest", referenced from:
      RegisterMonoModules() in RegisterMonoModules.o
  "_iosAppRequest", referenced from:
      RegisterMonoModules() in RegisterMonoModules.o
  "_iosFBSettingsPublishInstall", referenced from:
      RegisterMonoModules() in RegisterMonoModules.o
  "_iosFBAppEventsSetLimitEventUsage", referenced from:
      RegisterMonoModules() in RegisterMonoModules.o
  "_iosGetDeepLink", referenced from:
      RegisterMonoModules() in RegisterMonoModules.o
  "_iosFBAppEventsLogPurchase", referenced from:
      RegisterMonoModules() in RegisterMonoModules.o
  "_iosFBAppEventsLogEvent", referenced from:
      RegisterMonoModules() in RegisterMonoModules.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

会是什么呢?

4

1 回答 1

1

“架构 armv7 的未定义符号”的常见原因是:

您导入标头并且不链接到正确的库。这很常见,尤其是对于像 QuartzCore 这样的库的头文件,因为默认情况下它不包含在项目中。解决:

在 Build Phases 的 Link Binary With Libraries 部分中添加正确的库。

如果您想在默认搜索路径之外添加一个库,您可以在构建设置中的库搜索路径值中包含该路径,并将 -l{library_name_without_lib_and_suffix}(例如,对于 libz.a,使用 -lz)添加到其他链接器构建设置的标志部分。

您将文件复制到项目中,但忘记检查要添加文件的目标。解决:

打开正确目标的构建阶段,展开编译源并添加缺少的 .m 文件。

您包括一个为另一个架构(如 i386)构建的静态库,即主机上的模拟器。解决:

如果您的库供应商有多个库文件要包含在项目中,您需要包含一个用于模拟器 (i386) 和一个用于设备(​​例如 armv7)。

或者,您可以创建一个包含两种架构的胖静态库。

也试试这个

从所有静态库的项目构建设置中删除仅构建活动架构(构建设置参数键为“ONLY_ACTIVE_ARCH”)或用“否”覆盖它

于 2014-08-05T06:43:52.490 回答