14

多くの場合 (毎回ではない場合)、lldb でオブジェクトを印刷しようとすると、次のエラーが発生します。変更するビルド/デバッグ構成がありますか、それとも lldb 内部のエラーですか?

(lldb) po userLevel
error: warning: Stopped in an Objective-C method, but 'self' isn't available; pretending we are in a generic context
error: use of undeclared identifier 'userLevel'
error: 1 errors parsing expression

私は llvm でビルドし、デバッグ シンボルを削除しません。

編集:これがバックトレースです:

(lldb) bt
* thread #1: tid = 0x1c03, 0x001169c5 FanCake-Beta`-[KWUserLevelController addPoints:](, _cmd=0x0029187b, points=15) + 179 at KWUserLevelController.m:53, stop reason = step over
    frame #0: 0x001169c5 FanCake-Beta`-[KWUserLevelController addPoints:](, _cmd=0x0029187b, points=15) + 179 at KWUserLevelController.m:53
    frame #1: 0x00112172 FanCake-Beta`-[KWEventRealTimeControllergameEngine:hostedGame:didSucceedIn:withScore:](self=0x0b9d7740, _cmd=0x0027a2a7, engine=0x1be5af40, game=0x1be5a850, completionTime=3.59473554800206, score=0) + 421 at KWEventRealTimeController.m:647
    frame #2: 0x0007189a FanCake-Beta`__35-[KMCatchEmGameEngine animateStep6]_block_invoke197(, finished='\x01') + 257 at KMCatchEmGameEngine.m:214
    frame #3: 0x01990df6 UIKit`-[UIViewAnimationBlockDelegate _didEndBlockAnimation:finished:context:] + 223
    frame #4: 0x01983d66 UIKit`-[UIViewAnimationState sendDelegateAnimationDidStop:finished:] + 237
    frame #5: 0x01983f04 UIKit`-[UIViewAnimationState animationDidStop:finished:] + 68
    frame #6: 0x017587d8 QuartzCore`CA::Layer::run_animation_callbacks(void*) + 284
    frame #7: 0x03634014 libdispatch.dylib`_dispatch_client_callout + 14
    frame #8: 0x036247d5 libdispatch.dylib`_dispatch_main_queue_callback_4CF + 296
    frame #9: 0x04737af5 CoreFoundation`__CFRunLoopRun + 1925
    frame #10: 0x04736f44 CoreFoundation`CFRunLoopRunSpecific + 276
    frame #11: 0x04736e1b CoreFoundation`CFRunLoopRunInMode + 123
    frame #12: 0x040367e3 GraphicsServices`GSEventRunModal + 88
    frame #13: 0x04036668 GraphicsServices`GSEventRun + 104
    frame #14: 0x01945ffc UIKit`UIApplicationMain + 1211
    frame #15: 0x000039a8 FanCake-Beta`main(argc=1, argv=0xbffff354) + 94 at main.m:13
    frame #16: 0x00002dc5 FanCake-Beta`start + 53

編集2:ローカル変数を印刷しようとすると同じ

(lldb) po currentUser
error: variable not available

コードに NSLog() を入れると、正しい値が出力されます。しかし、poコマンドではありません。

4

4 に答える 4

25

通常、コンパイラの最適化をオンにすると、このエラーが発生します。コンパイラは、コードのロジック フローに必ずしも従わないコードを生成します。

ナビゲーターでプロジェクトに移動 -> ターゲット -> ビルド設定 -> 最適化レベルを検索 -> 最適化レベルを展開 -> デバッグ行を選択 -> プロジェクトとターゲットの両方の列で none に変更します。

お役に立てれば。

于 2013-03-08T03:16:37.963 に答える
5

最適化されているからです。例を使用してみましょう:

void f(int self) {
  // Here, "self" is live:Its value is used in the call to NSLog()
  NSLog(@"I am %d",self);
  // Here, "self" is dead: Its value is never used.
  // I could do self=0 or self=self*self and nobody would know.
  // An optimizing compiler will typically optimize it away.
  // It might still be on the stack (in the parameters passed to NSLog())
  // but the compiler shouldn't assume this.
  NSLog(@"Another function call: %d", 1);
  // If "self" was on the stack, it will probably now have been overwritten.
}

コンパイラは、コードをより速く/より小さくするために多くのことを行います。不要になった変数を忘れることは、非常に一般的な最適化です。

于 2013-03-08T04:08:30.463 に答える
5

私はこの問題を抱えていましたが、スキームを編集して実行ビルドをデバッグに設定すると解決しました。プッシュ通知をテストするために AdHoc に設定しましたが、明らかに LLDB が不満です。

于 2013-03-07T20:04:27.623 に答える
1

この他の質問ですでに述べたように:

ビルド設定で、プリコンパイル プレフィックス ヘッダーを NO に設定すると修正されました。

于 2016-05-05T11:19:45.130 に答える