Xcode 10.1
Xcode Product->Build works fine
Project is OLD. Migrated from pre-Xcode 9.
No tests in the project
Add unit test target (containing only the empty sample test)
Product->Test fails and crashes the build system
It seems to be caused by a link naturally created by the build from the DerivedData to the /tmp directory.
Xcode compiler output:
error: unexpected explicit output: '<TRIGGER: SymLink /Users/bill.shirley/Library/Developer/Xcode/DerivedData/Projects-aacmhfqthnovqgecjzbjrmjgtxae/Build/Products/Debug-iphoneos/ios1.app /tmp/Kevin.dst/Applications/ios1.app>'
error: unexpected service error: The Xcode build system has crashed. Please close and reopen your workspace.
related but unhelpful Xcode: invalid symlink error when trying to run app in iOS simulator
I've attempted lots of quit and restart Xcode (required), deleting of derived data, making clean, deleting simulators, rebooting with everything clean and reading empty test. To no avail.
I would love to rebuild this project from scratch, but it's massive and I don't have (i.e. want to make) the time currently.
Workaround 2: no testing.
Edit: Previously Unstated.
This app uses Cocoapods.
I tried the suggestion enter link description here, using items 2-6, running pod install when changes are made (and Podfile update) and it changed to a
ld: -bundle_loader can only be used with -bundle
clang: error: linker command failed with exit code 1 (use -v to see invocation)
invocation is:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -L/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator -L/Users/bill.shirley/Dev/ios/Projects/Kevin/../../Pods/CardIO/CardIO -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/Calendar -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/FirebaseCore -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/FirebaseMessaging -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/GoogleUtilities -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/Heartland-iOS-SDK -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/IGListKit -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/IOForm -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/OpenCV -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/Protobuf -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/XMLDictionary -F/Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/nanopb -F/Users/bill.shirley/Dev/ios/Projects/Kevin/../../Pods/Crashlytics/iOS -F/Users/bill.shirley/Dev/ios/Projects/Kevin/../../Pods/Fabric/iOS -F/Users/bill.shirley/Dev/ios/Projects/Kevin/../../Pods/FirebaseAnalytics/Frameworks -F/Users/bill.shirley/Dev/ios/Projects/Kevin/../../Pods/FirebaseInstanceID/Frameworks -F/Users/bill.shirley/Dev/ios/Projects/Kevin/../../Pods/GoogleAppMeasurement/Frameworks -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks -filelist /Users/bill.shirley/Dev/ios/Build/Intermediates.noindex/Kevin.build/Debug-iphonesimulator/ios1Tests.build/Objects-normal/x86_64/ios1Tests.LinkFileList -Xlinker -rpath -Xlinker #executable_path/Frameworks -Xlinker -rpath -Xlinker #loader_path/Frameworks -Xlinker -rpath -Xlinker #executable_path/Frameworks -Xlinker -rpath -Xlinker #loader_path/Frameworks -mios-simulator-version-min=12.1 -dead_strip -bundle_loader /Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/ios1.app/ios1 -Xlinker -object_path_lto -Xlinker /Users/bill.shirley/Dev/ios/Build/Intermediates.noindex/Kevin.build/Debug-iphonesimulator/ios1Tests.build/Objects-normal/x86_64/ios1Tests_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/bill.shirley/Dev/ios/Build/Intermediates.noindex/Kevin.build/Debug-iphonesimulator/ios1Tests.build/Objects-normal/x86_64/ios1Tests.swiftmodule -lstdc++ -ObjC -lCardIO -lc++ -lopencv_core -lopencv_imgproc -lsqlite3 -lz -framework AVFoundation -framework Accelerate -framework AudioToolbox -framework Calendar -framework CoreMedia -framework CoreVideo -framework Crashlytics -framework FIRAnalyticsConnector -framework Fabric -framework FirebaseAnalytics -framework FirebaseCore -framework FirebaseCoreDiagnostics -framework FirebaseInstanceID -framework FirebaseMessaging -framework Foundation -framework GoogleAppMeasurement -framework GoogleUtilities -framework Heartland_iOS_SDK -framework IGListKit -framework IOForm -framework MobileCoreServices -framework OpenGLES -framework Protobuf -framework QuartzCore -framework Security -framework StoreKit -framework SystemConfiguration -framework UIKit -framework XMLDictionary -framework nanopb -framework opencv2 -framework XCTest -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/bill.shirley/Dev/ios/Build/Intermediates.noindex/Kevin.build/Debug-iphonesimulator/ios1Tests.build/ios1Tests.xctest-Simulated.xcent -framework Pods_ios1Tests -Xlinker -dependency_info -Xlinker /Users/bill.shirley/Dev/ios/Build/Intermediates.noindex/Kevin.build/Debug-iphonesimulator/ios1Tests.build/Objects-normal/x86_64/ios1Tests_dependency_info.dat -o /Users/bill.shirley/Dev/ios/Build/Products/Debug-iphonesimulator/ios1.app/PlugIns/ios1Tests.xctest/ios1Tests
Related
I have a react-native app, which i wanted to start on ios. But the build-process in xCode fails with the following error:
file not found: /Volumes/Disk/XCode/Derived_Data/App-hksageyxjqizoydwjhxhihcbnxxv/Build/Products/Debug-iphonesimulator/App.app/App
It´s my first time building an App with xCode. I think this derived data is created by xCode, isn´t it? So how it can happen, that xCode is looking for something there what is missing?
Unfortunately i don´t have any idea, how to get closer to a solution.
Thanks in advance, for some help.
EDIT:
After cleaning, and rebuild, the same error appears:
Ld
/Volumes/DISK/XCode/Derived_Data/APP-hksageyxjqizoydwjhxhihcbnxxv/Build/Products/Debug-iphonesimulator/APP.app/PlugIns/APPTests.xctest/APPTests
normal (in target 'APPTests' from project 'APP')
cd /Volumes/DISK/Projekte/COMPANY/PROJECT/ios
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang
-target x86_64-apple-ios12.0-simulator -bundle -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk
-L/Volumes/DISK/XCode/Derived_Data/APP-hksageyxjqizoydwjhxhihcbnxxv/Build/Products/Debug-iphonesimulator
-L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib
-F/Volumes/DISK/XCode/Derived_Data/APP-hksageyxjqizoydwjhxhihcbnxxv/Build/Products/Debug-iphonesimulator
-F/Volumes/DISK/Projekte/COMPANY/PROJECT/ios/Pods/FirebaseAnalytics/Frameworks
-F/Volumes/DISK/Projekte/COMPANY/PROJECT/ios/Pods/Google-Mobile-Ads-SDK/Frameworks/GoogleMobileAdsFramework-Current
-F/Volumes/DISK/Projekte/COMPANY/PROJECT/ios/Pods/GoogleAppMeasurement/Frameworks
-F/Volumes/DISK/Projekte/COMPANY/PROJECT/ios/Pods/GoogleMaps/Base/Frameworks
-F/Volumes/DISK/Projekte/COMPANY/PROJECT/ios/Pods/GoogleMaps/Maps/Frameworks
-F/Volumes/DISK/Projekte/COMPANY/PROJECT/ios/Pods/GoogleSignIn/Frameworks
-F/Volumes/DISK/Projekte/COMPANY/PROJECT/ios/Pods/GoogleUserMessagingPlatform/Frameworks/Release
-F/Volumes/DISK/XCode/Derived_Data/APP-hksageyxjqizoydwjhxhihcbnxxv/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates/UserMessagingPlatform
-iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks
-iframework /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.sdk/Developer/Library/Frameworks
-filelist /Volumes/DISK/XCode/Derived_Data/APP-hksageyxjqizoydwjhxhihcbnxxv/Build/Intermediates.noindex/APP.build/Debug-iphonesimulator/APPTests.build/Objects-normal/x86_64/APPTests.LinkFileList
-Xlinker -rpath -Xlinker #executable_path/Frameworks -Xlinker -rpath -Xlinker #loader_path/Frameworks -dead_strip -bundle_loader /Volumes/DISK/XCode/Derived_Data/APP-hksageyxjqizoydwjhxhihcbnxxv/Build/Products/Debug-iphonesimulator/APP.app/APP
-Xlinker -object_path_lto -Xlinker /Volumes/DISK/XCode/Derived_Data/APP-hksageyxjqizoydwjhxhihcbnxxv/Build/Intermediates.noindex/APP.build/Debug-iphonesimulator/APPTests.build/Objects-normal/x86_64/APPTests_lto.o
-Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -ObjC -lc++ -lc++ -licucore -lsqlite3 -lstdc++ -lz -framework AVFoundation -framework Accelerate -framework AudioToolbox -framework CFNetwork -framework CoreData -framework CoreGraphics -framework CoreImage -framework CoreLocation -framework CoreMedia -framework CoreTelephony -framework CoreText -framework CoreVideo -framework Foundation -framework GLKit -framework ImageIO -framework JavaScriptCore -framework LocalAuthentication -framework MediaPlayer -framework MessageUI -framework MobileCoreServices -framework OpenGLES -framework
QuartzCore -framework SafariServices -framework Security -framework
StoreKit -framework SystemConfiguration -framework UIKit -framework
WebKit -framework XCTest -Xlinker -sectcreate -Xlinker __TEXT -Xlinker
__entitlements -Xlinker /Volumes/DISK/XCode/Derived_Data/APP-hksageyxjqizoydwjhxhihcbnxxv/Build/Intermediates.noindex/APP.build/Debug-iphonesimulator/APPTests.build/APPTests.xctest-Simulated.xcent
-lPods-APPTests -Xlinker -no_adhoc_codesign -Xlinker -dependency_info -Xlinker /Volumes/DISK/XCode/Derived_Data/APP-hksageyxjqizoydwjhxhihcbnxxv/Build/Intermediates.noindex/APP.build/Debug-iphonesimulator/APPTests.build/Objects-normal/x86_64/APPTests_dependency_info.dat
-o /Volumes/DISK/XCode/Derived_Data/APP-hksageyxjqizoydwjhxhihcbnxxv/Build/Products/Debug-iphonesimulator/APP.app/PlugIns/APPTests.xctest/APPTests
ld: file not found:
/Volumes/DISK/XCode/Derived_Data/APP-hksageyxjqizoydwjhxhihcbnxxv/Build/Products/Debug-iphonesimulator/APP.app/APP
clang: error: linker command failed with exit code 1 (use -v to see
invocation)
Unfortunately i can´t share the repository, because it´s not my own app, i'am just trying to help someone.
I am getting this error while trying to build in Xcode. I tried deleting derived data and restarting Xcode but nothing helped.
ld: framework not found Flutter
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Here is the entire error log:
Ld /Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Products/Debug-iphonesimulator/Runner.app/Runner normal x86_64
cd /Users/chaythanyanair/Documents/Qburst/Learn/flutter_poc/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.0.sdk -L/Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Products/Debug-iphonesimulator -L/Users/chaythanyanair/Documents/Qburst/Learn/flutter_poc/ios/Pods/EstimoteSDK -L/Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Products/Debug-iphonesimulator/Alamofire -L/Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Products/Debug-iphonesimulator/SwiftKeychainWrapper -L/Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Products/Debug-iphonesimulator/device_info -L/Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Products/Debug-iphonesimulator/flutter_secure_storage -L/Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Products/Debug-iphonesimulator/shared_preferences -L/Users/chaythanyanair/Documents/Qburst/Learn/flutter_poc/ios/Flutter -F/Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Products/Debug-iphonesimulator -F/Users/chaythanyanair/Documents/Qburst/Learn/flutter_poc/ios/Pods/EstimoteSDK/EstimoteSDK -F/Users/chaythanyanair/Documents/Qburst/Learn/flutter_poc/ios/Pods/../../../../flutter/flutter/bin/cache/artifacts/engine/ios -F/Users/chaythanyanair/Documents/Qburst/Learn/flutter_poc/ios/Flutter -filelist /Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker #executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.swiftmodule -ObjC -lAlamofire -lSwiftKeychainWrapper -ldevice_info -lflutter_secure_storage -lshared_preferences -framework CoreBluetooth -framework CoreLocation -framework EstimoteSDK -framework Flutter -framework Foundation -framework MobileCoreServices -framework SystemConfiguration -framework UIKit -ObjC -lAlamofire -lSwiftKeychainWrapper -ldevice_info -lflutter_secure_storage -lshared_preferences -framework CoreBluetooth -framework CoreLocation -framework EstimoteSDK -framework Flutter -framework Foundation -framework MobileCoreServices -framework SystemConfiguration -framework UIKit -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent -lPods-Runner -Xlinker -dependency_info -Xlinker /Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/chaythanyanair/Library/Developer/Xcode/DerivedData/Runner-efsxwbzqcezyswaezzytcnxazinn/Build/Products/Debug-iphonesimulator/Runner.app/Runner
How can I solve this issue?
I change to master channel.
flutter channel master
then run
flutter upgrade
For people coming here in 2020, I experienced this issue, ran the commands in the answer above (flutter channel master, flutter upgrade), and was then required to manually migrate my Xcode project to still work with the new version of Flutter. Info on that available here: https://flutter.dev/docs/development/ios-project-migration. Hope that can be of some help to someone.
Here's what worked for me:
Delete the ios folder completely
In the terminal, type flutter create .
And then try flutter run or press Play in Android Studio.
Try the following command:
flutter upgrade
Trying to use Google Cast 3.2.0 (via cocoapods) in my Swift project in Xcode, and I get an error when trying to run it in the simulator.
Ld /Users/nicholas/Library/Developer/Xcode/DerivedData/Bingo_Board-fqbocunomtcrqobsvzslsuigorec/Build/Products/Debug-iphonesimulator/Bingo\ Board.app/Bingo\ Board normal x86_64
cd /Users/nicholas/OneDrive/Apps/iOS/Bingo2
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.1.sdk -L/Users/nicholas/Library/Developer/Xcode/DerivedData/Bingo_Board-fqbocunomtcrqobsvzslsuigorec/Build/Products/Debug-iphonesimulator -F/Users/nicholas/Library/Developer/Xcode/DerivedData/Bingo_Board-fqbocunomtcrqobsvzslsuigorec/Build/Products/Debug-iphonesimulator -F\ \"/Users/nicholas/OneDrive/Apps/iOS/Bingo2/Pods/google-cast-sdk/GoogleCastSDK-Public-3.2.0-Release\" -filelist /Users/nicholas/Library/Developer/Xcode/DerivedData/Bingo_Board-fqbocunomtcrqobsvzslsuigorec/Build/Intermediates/Bingo\ Board.build/Debug-iphonesimulator/Bingo\ Board.build/Objects-normal/x86_64/Bingo\ Board.LinkFileList -Xlinker -rpath -Xlinker #executable_path/Frameworks -mios-simulator-version-min=8.0 -Xlinker -object_path_lto -Xlinker /Users/nicholas/Library/Developer/Xcode/DerivedData/Bingo_Board-fqbocunomtcrqobsvzslsuigorec/Build/Intermediates/Bingo\ Board.build/Debug-iphonesimulator/Bingo\ Board.build/Objects-normal/x86_64/Bingo\ Board_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-link-runtime -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator -Xlinker -add_ast_path -Xlinker /Users/nicholas/Library/Developer/Xcode/DerivedData/Bingo_Board-fqbocunomtcrqobsvzslsuigorec/Build/Intermediates/Bingo\ Board.build/Debug-iphonesimulator/Bingo\ Board.build/Objects-normal/x86_64/Bingo_Board.swiftmodule -ObjC -lc++ -framework AVFoundation -framework Accelerate -framework AudioToolbox -framework CFNetwork -framework CoreBluetooth -framework CoreGraphics -framework CoreMedia -framework CoreText -framework Foundation -framework GoogleCast -framework MediaPlayer -framework QuartzCore -framework Security -framework SystemConfiguration -framework UIKit -ObjC -framework CoreText -framework MediaAccessibility -framework SystemConfiguration -framework GoogleCast -framework StoreKit -lPods-Bingo\ Board -Xlinker -dependency_info -Xlinker /Users/nicholas/Library/Developer/Xcode/DerivedData/Bingo_Board-fqbocunomtcrqobsvzslsuigorec/Build/Intermediates/Bingo\ Board.build/Debug-iphonesimulator/Bingo\ Board.build/Objects-normal/x86_64/Bingo\ Board_dependency_info.dat -o /Users/nicholas/Library/Developer/Xcode/DerivedData/Bingo_Board-fqbocunomtcrqobsvzslsuigorec/Build/Products/Debug-iphonesimulator/Bingo\ Board.app/Bingo\ Board
ld: warning: directory not found for option '-F "/Users/nicholas/OneDrive/Apps/iOS/Bingo2/Pods/google-cast-sdk/GoogleCastSDK-Public-3.2.0-Release"'
ld: framework not found GoogleCast
clang: error: linker command failed with exit code 1 (use -v to see invocation)
You need to "pod repo update" then "pod install". If that doesn't work then you need to delete your pod.lock file and start all over with "pod init".
I have been trying for hours to fix this build error.
None of the advice from the dozens of threads I've read has fixed this error. What can I do?
"ld: entry point (_main) undefined. for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see >invocation)"
Ld /Users/yanayrosen/Library/Developer/Xcode/DerivedData/The-Talon-ebdutvfwgeagoxgpqbewfvfjaksq/Build/Intermediates/The-Talon.build/Release-iphoneos/The-Talon.build/Objects-normal/arm64/The-Talon normal arm64
cd /Users/yanayrosen/Desktop/Talon-Iphone-master
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk -L/Users/yanayrosen/Library/Developer/Xcode/DerivedData/The-Talon-ebdutvfwgeagoxgpqbewfvfjaksq/Build/Products/Release-iphoneos -L/Users/yanayrosen/Desktop/Talon-Iphone-master/../../../../Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/lib -L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/../iPhoneOS.sdk/usr/lib -F/Users/yanayrosen/Library/Developer/Xcode/DerivedData/The-Talon-ebdutvfwgeagoxgpqbewfvfjaksq/Build/Products/Release-iphoneos -F/Users/yanayrosen/Desktop/Talon-Iphone-master -F/Users/yanayrosen/Desktop/Talon-Iphone-master/Talon -F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/../iPhoneOS.sdk/System/Library/Frameworks -filelist /Users/yanayrosen/Library/Developer/Xcode/DerivedData/The-Talon-ebdutvfwgeagoxgpqbewfvfjaksq/Build/Intermediates/The-Talon.build/Release-iphoneos/The-Talon.build/Objects-normal/arm64/The-Talon.LinkFileList -Xlinker -rpath -Xlinker #executable_path/Frameworks -miphoneos-version-min=8.0 -dead_strip -fembed-bitcode-marker -L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -Xlinker -add_ast_path -Xlinker /Users/yanayrosen/Library/Developer/Xcode/DerivedData/The-Talon-ebdutvfwgeagoxgpqbewfvfjaksq/Build/Intermediates/The-Talon.build/Release-iphoneos/The-Talon.build/Objects-normal/arm64/The_Talon.swiftmodule -framework SystemConfiguration -framework StoreKit -framework Security -framework QuartzCore -lz.1 -lsqlite3 -framework CoreLocation -framework CoreGraphics -framework CFNetwork -framework AudioToolbox -Xlinker -dependency_info -Xlinker /Users/yanayrosen/Library/Developer/Xcode/DerivedData/The-Talon-ebdutvfwgeagoxgpqbewfvfjaksq/Build/Intermediates/The-Talon.build/Release-iphoneos/The-Talon.build/Objects-normal/arm64/The-Talon_dependency_info.dat -o /Users/yanayrosen/Library/Developer/Xcode/DerivedData/The-Talon-ebdutvfwgeagoxgpqbewfvfjaksq/Build/Intermediates/The-Talon.build/Release-iphoneos/The-Talon.build/Objects-normal/arm64/The-Talon"
I'm new to IOS Development and I'm trying to Restkit via cocoapods using this tutorial with no success. I'm getting the following error:
Ld /Users/noor/Library/Developer/Xcode/DerivedData/EZ-POINT-cltwbuksnzhbqpabqekhgkzqspjw/Build/Products/Debug-iphonesimulator/EZ-POINT.app/EZ-POINT normal i386
cd /Users/noor/Documents/Apps/EZ-POINT.BK
setenv IPHONEOS_DEPLOYMENT_TARGET 6.1
setenv PATH "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.1.sdk -L/Users/noor/Library/Developer/Xcode/DerivedData/EZ-POINT-cltwbuksnzhbqpabqekhgkzqspjw/Build/Products/Debug-iphonesimulator -F/Users/noor/Library/Developer/Xcode/DerivedData/EZ-POINT-cltwbuksnzhbqpabqekhgkzqspjw/Build/Products/Debug-iphonesimulator -filelist /Users/noor/Library/Developer/Xcode/DerivedData/EZ-POINT-cltwbuksnzhbqpabqekhgkzqspjw/Build/Intermediates/EZ-POINT.build/Debug-iphonesimulator/EZ-POINT.build/Objects-normal/i386/EZ-POINT.LinkFileList -Xlinker -objc_abi_version -Xlinker 2 -ObjC -framework CFNetwork -framework CoreData -framework CoreGraphics -framework MobileCoreServices -framework Security -framework SystemConfiguration -fobjc-arc -fobjc-link-runtime -Xlinker -no_implicit_dylibs -mios-simulator-version-min=6.1 -framework CoreLocation -framework MapKit -framework UIKit -framework Foundation -framework CoreGraphics -lPods -o /Users/noor/Library/Developer/Xcode/DerivedData/EZ-POINT-cltwbuksnzhbqpabqekhgkzqspjw/Build/Products/Debug-iphonesimulator/EZ-POINT.app/EZ-POINT
ld: library not found for -lPods
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Any suggestion?
You should open your project by .xcworkspace not by .xproject :-)
Besides, I find this one might help you solve your problem
You should read this, you need a workspace, not a project http://docs.cocoapods.org/guides/integrating_a_project.html