Search results for

Xcode

92,321 results found

Post

Replies

Boosts

Views

Activity

Reply to Bitcode and Assembly?
Great info @bwilson. Thank you.> If you want to do that, search for the __LLVM segmentAhh, you're correct. When I searched for the __LLVM segment, I do see that the assembly's .o file contains an __LLVM segment.> Assembly source files should work in the sense that you can build and run your project. I did not mean to imply that we somehow de-compile the assembly source into bitcode.When it becomes a requirement to submit apps in bitcode format, how will this impact architecture specific code (ie. assembly, or anything that is ifdef'd for that matter). It makes sense that assembly isn't converted to bitcode, but doesn't everything need to be in bitcode in order for an archive to be fully encoded in bitcode? I have an app that's hitting a compile warning when archiving complaining that a specific 3rd party library doesn't contain bitcode so the app cannot be archived with bitcode. That 3rd party library won't emit bitcode ostensibly because it contains assembly (I could be wong about the cause, though).&g
Jun ’15
Unable to boot the iOS simulator
After upgrading to El Capitan, I now get this error when running my simulator for 7.1 using Xcode 6.3.2 (8.3 simulators are fine)1) I checked for /etc/launchd.conf and there is none2) I tried deleting the 7.1 runtime and reinstalling it from xcode / preferences / components3) I tried deleting and readding the simulator for the devices (4s, 5, etc)3) I tried Xcode 7 BetaHere are some logs from https://forums.developer.apple.com/message/5474#5474-Jun 16 11:55:30 com.apple.iphonesimulator[18024] <Error>: Error Domain=NSPOSIXErrorDomain Code=60 Unable to boot the iOS Simulator. UserInfo=0x7ffa9285bb30 {NSLocalizedDescription=Unable to boot the iOS Simulator., NSLocalizedFailureReason=launchd failed to respond.}-Process: launchd_sim [2066]Path: /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 7.1.simruntime/Contents/Resources/RuntimeRoot/usr/libexec/launchd_simIdentifier: launchd_simVersion: ???Code Type: X86-64 (Native)Parent Process: ??? [1]Responsible: la
12
0
27k
Jun ’15
Reply to Why wrong window size:
I have a similar issue: in one of my view controller's viewWillAppear, self.view.frame has a size of 320x568 when using Xcode 6/iOS 8, but only 320x480 when using Xcode 7 beta/iOS 9. In both cases I'm testing in the simulator for iPhone 6. Any ideas why this is happening?
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to On device watchOS debugging impossible
When I click Run on the [AppName] WatchKit App scheme, the status window says Running [AppName] WatchKit App on [Phone name]. It stays like that for about 45 seconds. Then it says Finished running [AppName] WatchKit App on [Phone name].Did the 'trust this computer' diaglog ever show on the watch? Unpairing and then re-pairing and restarting Xcode should have gotten you that prompt. The symptoms you are experiencing seem to indicate that this dialog was not presented after you upgraded.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Can I submit app to app store, developed for iOS using preview release tools?
Ok. Thanks KMT and spielplatz. Sounds like I can develop full on using Xcode 7 and then when I get a feature ready for release (e.g. 1 week from today) I can simply open the project using the latest version of Xcode 6, do a regular Clean followed by an option Clean Build Folder..., then use Product > Archive to submit my iOS 7-9 app to the App Store even before iOS 9 has been released to the public. This sounds great. I'll try this workflow this week. Thanks.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Xcode 6.3.2 "forgetting" source control
FInally figured a workaround of sorts. Xcode seems to be picking up on another SVN repository that I have that is completely unrelated to my xcode projects (it's in a completely unrelated directory). It is included in the list of repositories when I look at Preferences->Accounts. Nothing I could do would convince Xcode to ignore the repository (tried deleting the reposity from the account list, but it would just come back next time I restarted Xcode). Tried disabling the repo. No effect. Still rows of ?s on my source code.But then I tried removing the other repository (as in: removing the directory containing it - not via Xcode). I then fired up Xcode. This time it popped up a dialog at the beginning, saying:This workspace includes files from other working copies that are not checked out. Choose Check Out to select additional working copies. Choose Ignore to skip these working copies.If I then say Ignore - voila.. the problem is fixed!When I get a chanc
Jun ’15
ssh fingerprint failed to verify
Attempting to set up an Xcode bot for the first time using OSX 10.11 and Xcode 7. When I get to the step to Provide repository credentials for this bot, I choose to use my existing ssh key (which works fine from the command line), but validation fails with the error The server SSH fingerprint failed to verify.I also tried letting it create the key for me, but I ended up with the same error.Anyone have any suggestions?
3
0
3.3k
Jun ’15
Reply to Xcode Code Coverage results
That tech note describes using gcov, and is not part of Xcode 7's code coverage support. For Xcode 7, there's a Coverage.profdata file that's produced down inside the CodeCoverage directory of the Intermediates folder of your project's build directory. That file can be read by the llvm-cov command line tool.
Jun ’15