Process: WindowServer [63374] Path: /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/Resources/WindowServer Identifier: WindowServer Version: ??? Code Type: ARM-64 (Native) Parent Process: launchd [1] User ID: 88 Date/Time: 2022-12-09 16:30:33.1035 +0530 OS Version: macOS 13.0.1 (22A400) Report Version: 12 Anonymous UUID: 9B161DC0-3070-30AA-F990-43E7B1155941 Sleep/Wake UUID: 6802AED2-E132-488C-BB3B-C90C13543676 Time Awake Since Boot: 140000 seconds Time Since Wake: 6122 seconds System Integrity Protection: enabled Crashed Thread: 15 Dispatch queue: FUSkyBridge Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Application Specific Information: abort() called
Search results for
LLDB crash
30,301 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Xcode 6.3.2 quits unexpectedly when submitting to iTunes StoresHello,It seems that everytime I submit to the app store, Xcode quits unexpectedly.Here's a screenshot of the Xcode Report Problem:So I have a valid distribution profile. I was able to archive. When I click the validate button, the archive was validated. But when I actually submit to the app store, Xcode just quits unexpectedly right when it starts Uploading ArchiveIs there anything I need to do before I make an archive in Xcode? Is it an Xcode 6.3.2 problem?Process: Xcode [3276] Path: /Applications/Xcode.app/Contents/MacOS/Xcode Identifier: com.apple.dt.Xcode Version: 6.3.2 (7718) Build Info: IDEFrameworks-7718000000000000~2 App Item ID: 497799835 App External ID: 812404257 Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: Xcode [3276] User ID: 501 Date/Time: 2015-06-19 15:13:34.165 +0700 OS Version: Mac OS X 10.10.3 (14D136) Report Version: 11 Anonymous UUID: 7712FAC3-808B-7650-2B59-856F7
im curious this is an issue on my end or apples end?this is my code:@IBAction func SendEmail(sender: AnyObject) { var SubjectText = This is Jeremy: SubjectText += Subject.text! let MessageBody = Body let mc: MFMailComposeViewController = MFMailComposeViewController() let toRecipients = [polarmp3@gmail.com] mc.mailComposeDelegate = self mc.setSubject(SubjectText) mc.setMessageBody(MessageBody.text, isHTML: false) mc.setToRecipients(toRecipients) self.presentViewController(mc, animated: true, completion: nil) }
It would be more helpful to start with the crash report to start with, since it sounds like you're trying to debug the reason for the EXC_BAD_INSTRUCTION crash. Since you're at a breakpoint in LLDB, you can run the detach command, which will allow the crash to complete, rather than be intercepted by LLDB. That way, the crash report will be stored, and you can retrieve it from disk to share here. All of the info you need to collect the report and then post it here is in Posting a crash report. — Ed Ford, DTS Engineer
Topic:
App & System Services
SubTopic:
iCloud & Data
Tags:
Thanks Quinn, Seeking to discard any other cause, I isolate the code that uses CommonCrypto in a separated app and run it. Same behavior. In my computer run perfectly well, but when trying to use the very same app in another Mac (in this case a MacBook air M2) it crashes immediately with the message ...quit unexpectedly (Attached the crash log it offered just after the failure). So, I'm pretty sure this is somehow caused by CommonCrypto. I even tried using the package CryptoSwift but fails exactly the same way. Any help will be highly appreciated. Thanks TestLic_quitUnexp_March1-2024.txt
Topic:
Privacy & Security
SubTopic:
General
Tags:
I'm studying iOS crash analysis. Now, I need to import crashlog files into LLDB. As WWDC18 Session 414 said, I now have a copy of myApp, dSYM, xxx.crash. Run the following command in a folder that I created:$ lldb(lldb) command script import lldb.macosx.crashlog(lldb) crashlog /xxxx.crashHowever, the stack trace file is not available and there is only a lot of error like:error: unable to locate any executables from the crash logDid I use it wrong? What is the correct stepts?Thanks in advance. For any question please just let me know.
As we know,macOS mojave 10.14 have an new security & privacy feature that when app need access to camera or microphene ,they must first request user's permission,then the app will be added to the correspond device permission list ,this feature is the same as ios. My app named CCLiveForMac ,however ,come across a headache problem after upgrade to macOS mojave 10.14.Simply, when My app get the permisson to access microphone from user ,then it is ok to be added in device permission list In Security & Privacy Dialog.unfortunately, when I want to cancel the permission by unChecked myApp,then Security & Privacy dialog quit unexpectedly with the prompt Preference error There was an error in Security & Privacy PreferenceI don't know this prompt mean deeply! then I try to solve this problem as these two methods :1、 add NSCameraUsageDescription and in NSMicrophoneUsageDescription to info.plist https://bugzilla.mozilla.org/show_bug.cgi?id=14708332、add entitlements info when codesign ht
Xcode auto updated today on sept 17 to version 16. All apps crash with XCBBuildService quit unexpectedly unexpected service error: The Xcode build system has crashed. Build again to continue. I see various posts about this about beta. But having your prod release crash 100% of the time after you auto push to everyone seems short sighted to say the least. Fix: https://xcodereleases.com/?scope=release hit download for 15.4 and turn off system settings>general>software update> and turn off auto updates for App Store and don't forget to do this after you get a new machine, like I did.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
As a general rule LLDB itself should never crash, so you should definitely file a bug - https://developer.apple.com/bug-reporting/ about this. Please post your bug number, just for the record. Make sure to include your crash report. Also, if you can include a project that reproduces the issue, that’d be great. Looking at the crash I see this: Thread 4 Crashed: 0 … lldb_private::Status::Fail() const + 4 1 … lldb_private::Target::GetScratchSwiftASTContext(lldb_private::Status&, lldb_private::ExecutionContextS… 2 … lldb_private::SwiftUserExpression::ScanContext(lldb_private::ExecutionContext&, lldb_private::Status&)… 3 … lldb_private::SwiftUserExpression::Parse(lldb_private::DiagnosticManager&, lldb_private::ExecutionCont… 4 … lldb_private::UserExpression::Evaluate(lldb_private::ExecutionContext&, lldb_private::EvaluateExpressi… 5 … lldb_private::Target::EvaluateExpression(llvm::StringRef, lldb_private::ExecutionContextScope*, lldb_p… 6 … lldb_priv
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
Hello! I'm trying to upload an app, the review is rejected because it crashes on iPad, in the simulators it works perfectly, but the review team tells me that it crashes on launch. When running my project, the only thing that appears is a warning: Error creating LLDB target at path .... using an empty LLDB target which can cause slow memory reads from remote devices: the specified architecture 'arm64--' is not compatible with 'x86_64-apple-ios12.0.0-simulator' in.... Am I missing some configuration? Or what could I check to solve this warning?
Running into the same thing. Am no longer able to place breakpoints in any project: Couldn't find the Objective-C runtime library in loaded images. Message from debugger: The LLDB RPC server has crashed. You may need to manually terminate your process. The crash log is located in ~/Library/Logs/DiagnosticReports and has a prefix 'lldb-rpc-server'. Please file a bug and attach the most recent crash log.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
when i use po, alway show this error. (lldb) po viewModel error: warning: Failed to load linked library UIKit of module Login - errors: Looking for @rpath/UIKit.framework/UIKit, error: (null) Failed to find framework for UIKit looking along paths: /Users/name/Library/Developer/Xcode/DerivedData/Game-fbcssrnefpcutjgjoxicuabsatne/Build/Products/Debug-iphoneos/UIKit.framework/ Looking for /Users/name/Library/Developer/Xcode/DerivedData/MegabilityInterface-hiqhsjxojjhqgudnbcwzmovnxrqu/Build/Intermediates.noindex/ArchiveIntermediates/MegabilityInterface/BuildProductsPath/Release-iphoneos/UIKit.framework/ , error: (null) error: :2:11: error: cannot find type '$__lldb_context' in scope extension $__lldb_context { ^~~~~~~~~~~~~~~ error: :19:5: error: cannot find '$__lldb_injected_self' in scope $__lldb_injected_self.$__lldb_wrapped_expr_10( ^~~~~~~~~~~~~~~~~~~~~ (lldb) I was try setting this config by SWIFT_OPTIMIZATION_LEVEL DEBUG_INFORMATION_FORMAT Still does't work. if i use IDE 'Print Descriptio
In WWDC 2015 session 402 (titled What's new in lldb) the presenter describes a number of improvements in lldb but none of them seem to work in my Xcode 7. The presenter shows several examples in which he says here's what used to happen... (and shows an error message), but we've fixed that and here's what you get now ... (and shows that you now get the result you expected). So I tried a few of those examples, copying exactly from his slide, and in every example I tried my lldb still gives the old error message. IOW it's acting as if it didn't get updated.For example the lldb command: (lldb) p NSMakeRect(0, 0, 10, 10)while debugging an Objective-C class formerly gave no response because NSMakeRect wasn't recognized. But now (he says) it gives:(NSRect) $0 = (origin = (x = 0, y = 0), size = (width = 10, height = 10))However when I try it, I get the old error:(lldb) p NSMakeRect(0, 0, 10, 10) error: use of undeclared identifier 'NSMakeRect' error: 1 errors pars
Can you post a stack trace of the crash? (For instance, make this crash with the debugger attached, use the “bt” command in the lldb prompt, and copy-and-paste the output here.)
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
Hi, thank you. I saw, 26883783 is duplicated now, which is good. There is also 27018553 where I put some more specific issue I had been facing with. Maybe that might be helpfull too.There is a question, though. I would like to understand the connection (from architecture point of view) between REPL and LLDB RPC server. I know, that REPL backed by LLDB. I also understand that LLDB RPC is now a separated process, so when it is crashed that does not lead to Xcode crash. But, this is all I know. Could you please point out some docs, I could gain more understanding of this?Thank you in advance.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags: