Hi, yup, I have this same issue, SF1 and SF2_Beta both worked fine but SF2 just quits unexpectedly on startup.
Search results for
LLDB crash
30,300 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
When i am start writing any code in the xcode for applications Xcode is quitting at the moment. I am using Xcode 12.4 on MAC Bigsur using Virtual Machine. Thanks and Appreciation Xcode Crash Report - https://developer.apple.com/forums/content/attachment/30143aa0-bf94-4e83-b1ef-eff0ae582a6d for any help
I have a project which when I attempt to build with XCode 16 RC fails with the message XCBBuildService quit unexpectedly. This occurs 100% of the time, thus I am unable to build the project. It first occurred in Xcode 16 beta 1 and has been present ever since, ever present in every beta; and now as its still present in the RC its highly unlikely it'll be fixed when the RC release becomes the final release. I submitted a ticket for this many weeks ago (FB14062261), but its not been looked at/updated. This is a problem in the short term because my app needs updating to use some iOS 18 specific features, in the longer term, it won't be possible to submit the app to the App Store if it continues to only be buildable with Xcode 15. As its impossible to build the app, I attempted to create a support ticket to get assistance. However I am unable to create a support ticket because the web page won't permit me to proceed raising a ticket unless there is a test Xcode project that recreates the issue.
The crashes you're seeing in Xcode 7 beta 4 could be caused by the presence of old runtimes as mentioned in the most recent Release Notes:Xcode processes may quit unexpectedly if older iOS Simulator runtimes (Xcode 6.x) are present on diskTo see if that's the case (or to rule it out as a cause), delete all (old) runtimes from /Library/Developer/CoreSimulator/Profiles/Runtimes.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
When running the code below in a playground file, it crashes with an LLDB RPC Server crash. The crash log is attached. If I put the code into a project, it runs fine. lldb-rpc-server-2024-10-04-110747.txt import Foundation @objc protocol Speaker { func speak() @objc optional func tellJoke() } class Deb: Speaker { func speak() { print(Hello, I'm Deb!) } func tellJoke() { print(What did Sushi A say to Sushi B?) } } class Bryan: Speaker { func speak() { print(Yo, I'm Bryan!) } func tellJoke() { print(What is the object oriented way to become wealthy?) } func writeTutorial() { print(I'm on it!) } } class Animal {} class Dog: Animal, Speaker { func speak() { print(Woof!) } } var speaker: Speaker = Bryan() if speaker is Bryan { print(Hi, I'm a Bryan) } speaker.speak() //speaker.writeTutorial() //won't compile (speaker as! Bryan).writeTutorial() speaker = Deb() speaker.speak() speaker.tellJoke?() speaker = Dog() speaker.tellJoke?() //return nil protocol MtgSimulatorDelega
Topic:
Developer Tools & Services
SubTopic:
Swift Playground
Yes, but that wouldn't be useful. Please attach the full crash log (you can continue execution from lldb or just detach lldb to get it)
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
Also, the crashes you're seeing in Xcode 7 beta 4 could be caused by the presence of old runtimes as mentioned in the most recent Release Notes:Xcode processes may quit unexpectedly if older iOS Simulator runtimes (Xcode 6.x) are present on diskTo see if that's the case (or to rule it out as a cause), delete all (old) runtimes from /Library/Developer/CoreSimulator/Profiles/Runtimes.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Hello there,Xcode 10.1 quits unexpectedly on my end as well. I'm not opening any playgrounds. Did you find a way to make it work?
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
Looks like this is a known issue. From release notes: Networking, Known Issue: Your app might quit unexpectedly if it uses ASIHTTPRequest.
Topic:
App & System Services
SubTopic:
Networking
Tags:
I have the same issue, Xcode : Version 16.2 (16C5032a) Simulator : 18.3 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:
For several Xcode 9 betas, I've been getting this error when I try to simulate under iOS 11Path: /Volumes/VOLUME//Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSuggestions.framework/suggestdshows it is a Simulator crash.I can run in iOS 9 just fine, but would prefer to also be testing under iOS 11. Is there a workaround? (I'm now running Xcode 9b4.)
Translated Report (Full Report Below) Process: XCBBuildService [19515] Path: /Applications/Xcode.app/Contents/SharedFrameworks/XCBuild.framework/Versions/A/PlugIns/XCBBuildService.bundle/Contents/MacOS/XCBBuildService Identifier: com.apple.dt.XCBBuildService Version: 16.0 (23000.0.209.4) Build Info: XCBuild-23000000209004000~20 (16A5171c) Code Type: ARM-64 (Native) Parent Process: Xcode [1187] Responsible: Xcode [1187] User ID: 501 Date/Time: 2024-06-13 18:52:42.9964 -0300 OS Version: macOS 15.0 (24A5264n) Report Version: 12 Anonymous UUID: E79CA726-937A-A4A4-9B42-9DF9455F3181 Time Awake Since Boot: 1300 seconds System Integrity Protection: enabled Crashed Thread: 15 Exception Type: EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000 Termination Reason: Namespace SIGNAL, Code 6 Abort trap: 6 Terminating Process: XCBBuildService [19515] Application Specific Information: abort() called Kernel Triage: VM - (arg = 0x3) mach_vm_allocate_kernel failed within call to vm_map_enter VM
Same issue i am facing The LLDB RPC server has crashed.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
On a MacBook Pro, OSX El Capitan release, using lldb on the command lineSummary: Keep getting a 'cannot open client port' error when using lldb command line mode. Recreated new lldb_codesign certificate but to no avail. Still getting the error.Here are the steps I took.( all work is in a separate tree off of /Users/Jeff )1. Removed all old lldb binaries/libraries2. Removed lldb_codesign certificate3. Reboot4. Re-create new lldb_codesign cert. per instructions below5. Rebuilt lldb from source ( make -B lldb )6. Reboot7. run newly built lldb on lldb ( % ./lldb ./lldb )8. still get 'unable to open client port'Any Help on this wouild be appreciated.Updating codesign============================================- Launch /Applications/Utilities/Keychain Access.app- In Keychain Access select the login keychain in the Keychains list in the upper left hand corner of the window.- Select the following menu item: keychain Access->Certificat
While debugging a Swift application in Xcode, LLDB crashes with an assertion failure related to LLDBMemoryReader and pointer authentication. The issue occurs during normal debugging (e.g. inspecting variables or stack frames), and causes the debugger to become unusable. The error appears to be triggered inside the Swift language runtime reflection path in LLDB error: Assertion failed: (LLDBMemoryReader module to address map ran into pointer authentication mask!), function addModuleToAddressMap, file /AppleInternal/Library/BuildRoots/603ae698-b099-11ef-b64c-aabfac210453/Library/Caches/com.apple.xbs/Sources/lldb/llvm-project/lldb/source/Plugins/LanguageRuntime/Swift/LLDBMemoryReader.cpp, line 537 Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it): 0 LLDB 0x00000001240eb8f8 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) + 40 1 LLDB 0x0000000123bbd0a8 lldb_pri