xcode 5.1: libCordova.a architecture problems

@Shazron posted the fix on the Apache JIRA – he notes that the fix will be released as part of Cordova 3.5: Select your Project icon Choose Build Settings. For “Architectures”, select $ARCHS_STANDARD – Standard architectures (armv7, armv7s, arm64) For “Valid Architectures”, add “arm64” Select your CordovaLib.xcodeproj icon In the Build Settings for the Project … Read more

Xcode 5.1: missing required architecture arm64

According to apple’s release note, see the following note point. Note: Be aware of the following architectures issues when opening your existing projects in Xcode 5.1: When building for all architectures, remove any explicit architectures setting and use the default Standard Architectures setting. For projects that were previously opted-in using “Standard Architectures Including 64-Bit”, switch … Read more

“‘cc’ failed with exit status 1” error when install python library

Run these two lines in your shell before you build: export CFLAGS=-Qunused-arguments export CPPFLAGS=-Qunused-arguments Those exports tell the compiler to ignore unused arguments rather than complaining about them. The reason seems to be that Python is compiling modules using the options that it was built with, except one of those options no longer works in … Read more