Search results for

“LLDB crash”

30,541 results found

Post

Replies

Boosts

Views

Activity

xcode quit unexpectedly
I want to read almost a million addresses in foor loop using CLGeocoder and save their coordinates. I have also put a 2 second pause in each loop, but every time I want to run the program in Xcode, after 200 or 300 iterations, the program closes suddenly. Does anyone know the reason? Is there a problem with the code? here is my code : func createCSV(from recArray:[Dictionary]) { var csvString = (Adresse);(latitute );(longitude)nn for dct in recArray { csvString = csvString.appending((String(describing:dct[Adresse]!));(String(describing: dct[latitute]!));(String(describing: dct[longitude]!))n) } let fileManager = FileManager.default do { let path = try fileManager.url(for: .documentDirectory, in: .allDomainsMask, appropriateFor: nil, create: false) let fileURL = path.appendingPathComponent(CSVRec.csv) try csvString.write(to: fileURL, atomically: true, encoding: .utf8) } catch { print(error creating file) } } func getLocation(for address: String) async throws -> CLLocationCoordinate2D { guard let coordinate
1
0
1k
Nov ’22
“Wi-Fi Aware Sample” on Phone quit unexpectedly.
The app “Wi-Fi Aware Sample” on Bojie的iPhone quit unexpectedly. Domain: IDEDebugSessionErrorDomain Code: 20 Failure Reason: 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. User Info: { DVTErrorCreationDateKey = 2025-09-17 10:26:56 +0000; IDEDebugSessionErrorUserInfoUnavailabilityError = Error Domain=com.apple.dt.deviceprep Code=-10 Fetching debug symbols for BojieU7684iPhone UserInfo={NSLocalizedRecoverySuggestion=Xcode will continue when the operation completes., NSLocalizedDescription=Fetching debug symbols for BojieU7684iPhone}; IDERunOperationFailingWorker = DBGLLDBLauncher; } Event Metadata: com.apple.dt.IDERunOperationWorkerFinished : { device_identifier = 00008101-001E29E01E63003A; device_isCoreDevice = 1; device_model = iPhone13,3; d
3
0
214
Sep ’25
LLDB RPC server crash
Bugreport: 38149037Hi there.Today I've faced very annoying issue. When I place breakpoint somewhere in UIViewController subclass written in Swift and try to stop on this breakpoint LLDB RPC server crashes every time. Both with simulator and device.I've reinstalled xCode, cleaned everything, tried 9.3 beta3 without success.Can someone help me with workaround of this bug? This issue is strongly affects my work.Stacktraces:https://www.dropbox.com/s/31h34cuqrbdx0yc/traces.zip?dl=0
0
0
1.2k
Mar ’18
Xcode 10.1 quit unexpectedly
When I open Xcode I get the message Xcode 10.1 quit unexpectedly with error details:Process: Xcode [361]Path: /Applications/Xcode.app/Contents/MacOS/XcodeIdentifier: com.apple.dt.XcodeVersion: 10.1 (14460.46)Build Info: IDEFrameworks_Fall2018-14460046000000000~5App Item ID: 497799835App External ID: 828917606Code Type: X86-64 (Native)Parent Process: ??? [1]Responsible: Xcode [361]User ID: 501Date/Time: 2018-12-01 13:56:40.002 +0500OS Version: Mac OS X 10.14 (18A293u)Report Version: 12Anonymous UUID: 56CE9E58-0D0C-B00D-D09D-BF93FE2F3681Time Awake Since Boot: 110 secondsSystem Integrity Protection: enabledCrashed Thread: 0 Dispatch queue: com.apple.main-threadException Type: EXC_CRASH (SIGABRT)Exception Codes: 0x0000000000000000, 0x0000000000000000Exception Note: EXC_CORPSE_NOTIFYApplication Specific Information:Sending newPlayground: to <IDEApplicationCommands: 0x7ff3a1d44490> from (null)ProductBuildVersion: 10B61UNCAUGHT EXCEPTION (NSInvalidArgumentException): +[NSColor detailAccentCol
5
0
2.9k
Dec ’18
Reply to No Crashes?
Any time your applications quits (crashes) unexpectedly the Xcode debugger will shows crash data. The Xcode simulator is not the same as the application on an actual device. There are apps that don't crash on Xcode but when put onto a device will crash for various reasons the simulator doesn't account for.
Jun ’15
Reply to libsystem_kernel.dylib crash
I am using intel macbook 2017. I purchased logic pro x in 2018 jan or so and have never found any bug like this. BUT FOR THE FIRST TIME, in new MAC OS 12.2.1 Montery, which i updated last night, Logic pro Unexpectedly quits and never reopenes!! Here is the crash report which is very similiar to the above mentioned libsystem_pthread.dylib . It seems apple's DYNAMIC LIBRARIES CRASH not only in iOS but also in MAC OS. Logic Pro 10.7.2 unexpectedly quit in Mac Montery
Feb ’22
datamitigator Carousel quit unexpectedly
Every time I try to run a watch app in the simulator I get these errors:Carousel quit unexpectedlyApplication Specific Information:Assertion failed: (false), function -[CSLHexAppGraph decrementNeighborCountsForHex:], file /BuildRoot/Library/Caches/com.apple.xbs/Sources/Carousel_Sim/Carousel-342.5/Carousel/UI/Mazda/Models/CSLHexAppGraph.mm, line 859.CoreSimulator 159 - Device: Apple Watch - 38mm - Runtime: watchOS 2.0 (13S5254w) - DeviceType: Apple Watch - 38mmcom.apple.datamitigator quit unexpectedlyApplication Specific Information:*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSFileManager enumeratorAtURL:includingPropertiesForKeys:options:errorHandler:]: URL is nil'terminating with uncaught exception of type NSExceptionabort() calledCoreSimulator 159 - Device: iPhone 6 - Runtime: iOS 9.0 (13A4254u) - DeviceType: iPhone 6Reinstalled xcode 7 twice now to see if it would fix
0
0
855
Jun ’15
LLDB RPC server crash in Xcode 16.3
Created a new project in Xcode 16.3. While adding breakpoints app is crashing every time in Xcode and playground both. Tried with swift 5 and swift 6 getting same error. Crash reason : 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 lldb-rpc-server-2025-04-14-092736.txt
4
0
628
Apr ’25
xcode quit unexpectedly
I want to read almost a million addresses in foor loop using CLGeocoder and save their coordinates. I have also put a 2 second pause in each loop, but every time I want to run the program in Xcode, after 200 or 300 iterations, the program closes suddenly. Does anyone know the reason? Is there a problem with the code? here is my code : func createCSV(from recArray:[Dictionary]) { var csvString = (Adresse);(latitute );(longitude)nn for dct in recArray { csvString = csvString.appending((String(describing:dct[Adresse]!));(String(describing: dct[latitute]!));(String(describing: dct[longitude]!))n) } let fileManager = FileManager.default do { let path = try fileManager.url(for: .documentDirectory, in: .allDomainsMask, appropriateFor: nil, create: false) let fileURL = path.appendingPathComponent(CSVRec.csv) try csvString.write(to: fileURL, atomically: true, encoding: .utf8) } catch { print(error creating file) } } func getLocation(for address: String) async throws -> CLLocationCoordinate2D { guard let coordinate
Replies
1
Boosts
0
Views
1k
Activity
Nov ’22
Apps unexpectedly quitting
After updating, all my 3rd-party apps do not open. When I tap an icon, they just close. Happens to all apps. A reboot fixes it temporarily (sometimes)... Could this be a signature thing?
Replies
2
Boosts
0
Views
1.1k
Activity
Jun ’18
“Wi-Fi Aware Sample” on Phone quit unexpectedly.
The app “Wi-Fi Aware Sample” on Bojie的iPhone quit unexpectedly. Domain: IDEDebugSessionErrorDomain Code: 20 Failure Reason: 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. User Info: { DVTErrorCreationDateKey = 2025-09-17 10:26:56 +0000; IDEDebugSessionErrorUserInfoUnavailabilityError = Error Domain=com.apple.dt.deviceprep Code=-10 Fetching debug symbols for BojieU7684iPhone UserInfo={NSLocalizedRecoverySuggestion=Xcode will continue when the operation completes., NSLocalizedDescription=Fetching debug symbols for BojieU7684iPhone}; IDERunOperationFailingWorker = DBGLLDBLauncher; } Event Metadata: com.apple.dt.IDERunOperationWorkerFinished : { device_identifier = 00008101-001E29E01E63003A; device_isCoreDevice = 1; device_model = iPhone13,3; d
Replies
3
Boosts
0
Views
214
Activity
Sep ’25
LLDB RPC server crash
Bugreport: 38149037Hi there.Today I've faced very annoying issue. When I place breakpoint somewhere in UIViewController subclass written in Swift and try to stop on this breakpoint LLDB RPC server crashes every time. Both with simulator and device.I've reinstalled xCode, cleaned everything, tried 9.3 beta3 without success.Can someone help me with workaround of this bug? This issue is strongly affects my work.Stacktraces:https://www.dropbox.com/s/31h34cuqrbdx0yc/traces.zip?dl=0
Replies
0
Boosts
0
Views
1.2k
Activity
Mar ’18
How to fix "appleaccountd quit unexpectedly" error?
Starting with Xcode 13 beta 3, every time I quit Xcode I'm getting the crash dialog in the attached image. I'm not sure what appleaccountd is doing, but everything seems to work fine except for the crash. Does anyone know how to fix this? Is it something I should be concerned about?
Replies
8
Boosts
0
Views
1.8k
Activity
Jul ’21
Xcode 10.1 quit unexpectedly
When I open Xcode I get the message Xcode 10.1 quit unexpectedly with error details:Process: Xcode [361]Path: /Applications/Xcode.app/Contents/MacOS/XcodeIdentifier: com.apple.dt.XcodeVersion: 10.1 (14460.46)Build Info: IDEFrameworks_Fall2018-14460046000000000~5App Item ID: 497799835App External ID: 828917606Code Type: X86-64 (Native)Parent Process: ??? [1]Responsible: Xcode [361]User ID: 501Date/Time: 2018-12-01 13:56:40.002 +0500OS Version: Mac OS X 10.14 (18A293u)Report Version: 12Anonymous UUID: 56CE9E58-0D0C-B00D-D09D-BF93FE2F3681Time Awake Since Boot: 110 secondsSystem Integrity Protection: enabledCrashed Thread: 0 Dispatch queue: com.apple.main-threadException Type: EXC_CRASH (SIGABRT)Exception Codes: 0x0000000000000000, 0x0000000000000000Exception Note: EXC_CORPSE_NOTIFYApplication Specific Information:Sending newPlayground: to <IDEApplicationCommands: 0x7ff3a1d44490> from (null)ProductBuildVersion: 10B61UNCAUGHT EXCEPTION (NSInvalidArgumentException): +[NSColor detailAccentCol
Replies
5
Boosts
0
Views
2.9k
Activity
Dec ’18
vision pro simulator not opening on mac m1 and quitting unexpectedly
ive been using the mac m1 for almmost a year and it used to run vision pro simulator on xcode 15 quite smoothly but now its quitting unexpectedly showing errors in loading the realtiykit content
Replies
0
Boosts
0
Views
295
Activity
Mar ’25
Reply to No Crashes?
Any time your applications quits (crashes) unexpectedly the Xcode debugger will shows crash data. The Xcode simulator is not the same as the application on an actual device. There are apps that don't crash on Xcode but when put onto a device will crash for various reasons the simulator doesn't account for.
Replies
Boosts
Views
Activity
Jun ’15
Xcode and Notes quit unexpectedly
I am very troubled with Xcode; it always closes on its own. I have commented about this before, but I didn’t receive any response. I am frustrated now.
Replies
1
Boosts
0
Views
155
Activity
Jan ’25
spammed by "PreviewShell quit unexpectedly."
how to fix https:// i.ibb.co/SwZ76KzZ/Screenshot-2025-08-07-at-10-35-24-AM.png
Replies
0
Boosts
0
Views
52
Activity
Aug ’25
Reply to libsystem_kernel.dylib crash
I am using intel macbook 2017. I purchased logic pro x in 2018 jan or so and have never found any bug like this. BUT FOR THE FIRST TIME, in new MAC OS 12.2.1 Montery, which i updated last night, Logic pro Unexpectedly quits and never reopenes!! Here is the crash report which is very similiar to the above mentioned libsystem_pthread.dylib . It seems apple's DYNAMIC LIBRARIES CRASH not only in iOS but also in MAC OS. Logic Pro 10.7.2 unexpectedly quit in Mac Montery
Replies
Boosts
Views
Activity
Feb ’22
datamitigator Carousel quit unexpectedly
Every time I try to run a watch app in the simulator I get these errors:Carousel quit unexpectedlyApplication Specific Information:Assertion failed: (false), function -[CSLHexAppGraph decrementNeighborCountsForHex:], file /BuildRoot/Library/Caches/com.apple.xbs/Sources/Carousel_Sim/Carousel-342.5/Carousel/UI/Mazda/Models/CSLHexAppGraph.mm, line 859.CoreSimulator 159 - Device: Apple Watch - 38mm - Runtime: watchOS 2.0 (13S5254w) - DeviceType: Apple Watch - 38mmcom.apple.datamitigator quit unexpectedlyApplication Specific Information:*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSFileManager enumeratorAtURL:includingPropertiesForKeys:options:errorHandler:]: URL is nil'terminating with uncaught exception of type NSExceptionabort() calledCoreSimulator 159 - Device: iPhone 6 - Runtime: iOS 9.0 (13A4254u) - DeviceType: iPhone 6Reinstalled xcode 7 twice now to see if it would fix
Replies
0
Boosts
0
Views
855
Activity
Jun ’15
Reply to "com.apple.datamigrator quit unexpectedly." when Build and Run to iOS 9.3 beta 2 simulators
I ran the command in in my case, it looks like BackBoardServices.framework is installed. However, I am also receiving the com.apple.datamigrator quit unexpectedly crash whenever I launch a simulator from Xcode (7.3 beta (7D129n))
Replies
Boosts
Views
Activity
Feb ’16
Reply to El Capitan beta 6 + Xcode
Springboard quit unexpectedly with any playground open. If I OK the crash dialog, I'll get a new one within five seconds.Didn't happen on El Cap beta 5.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’15
LLDB RPC server crash in Xcode 16.3
Created a new project in Xcode 16.3. While adding breakpoints app is crashing every time in Xcode and playground both. Tried with swift 5 and swift 6 getting same error. Crash reason : 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 lldb-rpc-server-2025-04-14-092736.txt
Replies
4
Boosts
0
Views
628
Activity
Apr ’25