Xcode LLVM 6.0 Error - ios

i have problem about compile iOS default project source.
i registered apple developers site to test my app in iPhone.
after finish registration, i try to launch app but when i build LLVM 6.0 error occurred..
when create app if i select swift language, compile is successed.
but if i select object-c "LLVM 6.0 Error" error occurred.
my dev environment is Xcode 6.1.1 / iOS 8.1.2.
i attached my error screen shot. how can i solve..

Quit Xcode. Clean out the DerivedData folder as I explain here: https://stackoverflow.com/a/6247073/341994 Restart the computer.

Related

Unable to run app in Simulator 9.0 using XCode 7.0

When I run my application using XCode 7.0. Everytime I am getting below error. How to fix this issue.
I am using Mac with 10.10.5 . I searched that 10.10.4 later supports XCode 7.0
Please suggest where I went wrong...!
Go to Xcode -> Preferences- Downloads tab. 
Here you will be able to see list of simulator available for downloading.
Download the required simulator.
Restart Xcode
You will be able to run your project on simulator without any issue.
Okay so it seems like the run time components for the simulator are not installed with your version of Xcode (this may have happened when updating or downloading a beta and Xcode got confused).
Try do the Following: Xcode > Preferences > Downloads > Check and Install Now
That should Help, otherwise you can go to itunesconnect or anywhere on the web and download and add the simulator files manually.

How to Fix Xcode Error “Could not find Developer Disk Image” on iOS9.2

I am trying to test my app on iOS 9.2 device using Xcode 7.1.1, and getting the error message
“Could not find Developer Disk Image”.
Googled and found that, this is due to the Version Mismatch between Xcode deployment target and iOS version. On Xcode 7.1, I can see the deployment target till iOS 9.1 only.
So, I do understand that have to update my Xcode to the 7.2 version for deployment target iOS 9.2. But i don't wanna do the update.
Is there any valid way to test my app using Xcode 7.1 on iOS 9.2 device?
Fix it by downloading XCode 7.2 dmg and installed it as a new copy.
or
Uninstall exiting one and directly download new version of xcode from App Store.
Have look on same thread in SO .
If you go for update there also some problem have look on this.
Your Xcode iOS SDK should not be less that Device iOS SDK you can install app as Internal Tester by TestFlight. or www.diawi.com

Xcode 7.0 beta 6 crashes when app is run in the simulator with "Xcode quit unexpectedly." error

My app is crashing in Xcode 7.0 beta 6 when I run it in the simulator with following error message:
Xcode quit unexpectedly.
Click Reopen to open the application again. Click Report to see more detailed information and send a report to Apple.
Here is my crash report:
http://pastebin.com/YechkXrm
Things I noticed:
The crash happens 100% of the time so I am unable to run my app in the simulator or execute unit tests.
Same app does NOT crash on a different computer running identical OS X and Xcode versions.
A different app did not crash.
What I tried so far:
Reinstalling Xcode.
Reseting content and settings of the simulator.
Clearing ~/Library/Developer/Xcode/DerivedData and ~/Library/Caches/com.apple.dt.Xcode/ directories.
Deleting and adding the simulator from Window > Devices.
Xcdode > Preferences > Source Control > Uncheck the Enable Source control.
Selecting "Command line tools" version from Preferences > Locations.
Restarting my computer.
I did submit a bug report to Apple.
Xcode Version 7.0 beta 6 (7A192o)
OS X Version 10.10.5 (14F27)
Mystery solved
I found out the source of the problem. I am using Carthage to build frameworks. To solve this problem I needed to run carthage update. I think that last time I did that I did not commit the built framework files from Carthage/Build directory. And maybe when I installed newer Xcode version it caused the problem with the framework files there were built using previous command line tools.

xcode 7 beta 5 can not download simulator

After installing xcode7 beta5 I ran a simple project on simulator, but simulator showed an error:
The com.apple.CoreSimulator.SimRuntime.iOS-9-0 simulator runtime is not available.
Download the com.apple.CoreSimulator.SimRuntime.iOS-9-0 simulator runtime from the Downloads section in Xcode's Preferences.
But when I go to the preference download folder it's empty in components after check and install.
That is Network Problem.And don't use the beta version.Here is the Version 7.1 in AppStore.
You can download it and try again.

App installation failed. This operation is unsupported

I've been updating an app that works perfectly in iOS7 to be compatible with the new iOS8. I can't deploy the app to an iPhone with the last GM iOS8 version. The compilation process give me no errors, but Xcode give me the following alert:
App installation failed. This operation is unsupported.
Can someone help me?
Thanks
I had the same problem too. The environment I used is Xcode6 and try to run my app on iOS8 devices.
My solution is
first change Deployment Location as NO in your Build Settings.
Close Xcode
Remove all intermediate build files located in the corresponding subfolders (has your app prefix) under Xcode Derived Data folder (~/Library/Developer/Xcode/DerivedData/).
Restart your Xcode, build, and then run app on your devices.
Had the same problem.
This is a compatibility problem between Xcode 6 and your app configuration.
1) Download Xcode 5 and try to run your app on your ios8 device, it should work
2) Try to recreate your app configuration from scratch to ensure compatibility with Xcode 6

Resources