Failed to read unknown boot command 0x80000022

In my application, I use a very large amount of code, which I copied from the Apple SpeakHere example, and when I run the application on the iPhone, it pops up this error about a hundred times before downloading XIB:

unable to read unknown load command 0x80000022

He also prints these errors:

warning: Unable to read symbols for ""/Users/eamonford/Desktop/Sleep Blaster touch/build/Debug-iphoneos"/Sleep Blaster touch.app/Sleep Blaster touch" (file not found).    
warning: Couldn't raise load state for requested shlib: "Sleep Blaster touch" for breakpoint 1.

However, when starting the application in the simulator there are no errors. In addition, I know that errors come from some part of the code that I received from SpeakHere, because Apple’s own example produces the same errors, and my application did not generate these errors before I added the SpeakHere code.

Does anyone have an idea of ​​what these errors mean or how can I trace them? Thanks!

+3
source share
2 answers

As for the first warning, this seems like a known issue in SDK 3.1 (I assume you are using 3.1, I have never seen this error with other versions). If you try to compile with a target value of 3.0, this should fix the problem.

+2
source

I saw this error after upgrading to Snow Leopard, but before upgrading the developer tools.

If you have not already done so, download and install the new Xcode and SDK.

+1
source

Source: https://habr.com/ru/post/1712164/


All Articles