missing required architecture x86_64 in file libCorePlot-CocoaTouch.a

痞子三分冷 提交于 2019-11-30 01:51:30

If you want a 64-bit version of Core Plot, you'll have to build a new version of the static library. Arm64 builds require iOS 7 but Core Plot supports earlier versions, too, so the pre-built library is 32-bit only.

Open CorePlot-CocoaTouch.xcodeproj and change the architecture settings to "Standard Architectures (including 64-bit)". Either build the "Universal Library" target and include the resulting static library in place of the one included with Core Plot 1.4 or use the dependent project setup instead.

Ojancano

CorePlot has released 1.5.1 to work with Xcode 5.1. You only need to copy the CorePlotHeaders folder and the libCorePlot-CocoaTouch.a file to your project.

You can download it from here.

Try:

lipo -info libCorePlot-CocoaTouch.a

It's showing that the library is built for armv7, armv7s and i386 (32bit simulator) and that's not including the 64bit simulator. You'll have to build the lib for 64bit simulator and after that you can use lipo to add the 64bit lib to libCorePlot-CocoaTouch.a.

Output:

Architectures in the fat file: libCorePlot-CocoaTouch.a are: armv7 armv7s i386

PS: It's not going to work on iPhone 5S as well (no arm64).

EDIT:

Here are the steps you need to make in order to produce a binary that has both the arm64 and x86_64 architectures in it:

  1. download CorePlot_1.4 from https://code.google.com/p/core-plot/downloads/detail?name=CorePlot_1.4.zip&can=2&q=
  2. Open the Xcode project (CorePlot-CocoaTouch.xcodeproj) located in CorePlot_1.4/Source/framework
  3. Select "Standard architectures" for "architectures" and "Latest iOS (iOS 7)" for "Base SDK"
  4. Build the library (CMD+B)
  5. Go to CorePlot_1.4/Source/build/ in the terminal
  6. Run lipo -create ./Debug-iphoneos/libCorePlot-CocoaTouch.a ./Debug-iphonesimulator/libCorePlot-CocoaTouch.a -output core_plot_all.a
  7. Add the newly created lib (core_plot_all.a) to your project
  8. You're ready to go

change the setting of Architecture of Xcode

If you don't want to go through the process of downloading and building the project, I built the universal library (for armv7, armv7s and arm64) and put it up here.

This is built from coreplot commit id cc0a18cef8915f4a11e0699e9429c0a2f0018b42.

I followed the official document 'Using Core Plot In An Application' in Xcode 7.2.1 with iOS SDK 9.2. I got the same error even if the .a supported arm64, until I add the linker flag '-lCorePlot-CocoaTouch' in addition to '-OjbC'.

If you tried all above but still not work, try to set -ObjC -lCorePlot-CocoaTouch to 'Other Linker Flags' in 'Build Settings' or your project target.

Simplest Solution that works for me: Go to your project > build setting > architecture. Change architecture as armv7 and delete others like armv6,etc like as given in the image below :-

I got same errors with Xcode7.3 + CocoaPod. And I fixed the issue with Other Linker Flags= $(inherited) .

Of course, this setting is only valid with CocoaPod.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!