Tag: build error

如何解决在iphone中的命令“命令/ bin / sh失败,退出代码1”

我在我的应用程序中使用了一个cocoa静态库。 当我编译我的库时,我得到了以下错误: Shell Script invocation error:can't open input file: /Users/sijuthomas/Library/Developer/Xcode/DerivedData/SCXML2- bbttehupryhijphhjdiemcytkvgy/Build/Products/Debug-iphonesimulator/ libSCXMLParser.a (No such file or directory) Command /bin/sh failed with exit code 1 我怎样才能解决这个问题?

是什么导致Eclipse中导入的Maven项目默认使用Java 1.5而不是Java 1.6,如何确保它不是?

我导入了一个Maven项目,它使用了Java 1.5,即使我已经configuration了1.6默认的Preferences->Java->Installed JREs 。 当我将Maven项目改为使用1.6 JRE时,仍然存在项目使用Java 1.5时遗留的构build错误(我在前面描述了这些构build错误: 我在m2eclipse中构build错误,但是在命令行上没有使用maven2 – 我的m2eclipse是否configuration错误? ) 我将删除该项目,然后再试一次,但是我想确保这次从开始就使用Java 1.6来查看这是否消除了构build问题。 我如何确保项目在导入时使用Java 1.6?

项目构build中的CocoaPods错误

我无法build立一个使用CocoaPods的项目。 我得到以下错误: diff: /../Podfile.lock: No such file or directory diff: Manifest.lock: No such file or directory error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.` $ pod install似乎工作正常,并将Pods项目添加到我的工作区。 我试过$ pod update但这没有帮助。 看来PODS_ROOT没有被设置。 Podfile: platform :ios, '6.0' workspace 'Example.xcworkspace' xcodeproj 'example/Example.xcodeproj' pod 'TestFlightSDK', '~> 1.3.0-beta.5' pod 'TestFlightLogger', […]