0

Java 1.6 を搭載した MacbookPro 64 ビット Snow Leopard の Eclipse 3.5 で JOGL を実行しようとしています。コードは XP マシンで実行されますが、MacBook で実行しようとすると、Eclipse のコンソールに次のエラーが表示されます。

ロケーション 00000000 eip=8fe11f32 の無効なメモリ アクセス

以上です。いくつかの異なるコードを試しましたが、すべて同じエラー メッセージが表示されます。

何を試すべきか、または問題がどこにあるのかについてのアイデアはありますか? ありがとう!

4

2 に答える 2

0

Taking a total shot in the dark, I would guess that somewhere you've got a 32 bit library running on a 64 bit machine. I could easily imagine that some bit-twiddly optimized code runs right into null pointer territory when the size of the pointer is incorrect. Without knowing more, I would suggest making sure everything you're using is built for the right architecture.

于 2009-12-04T00:44:59.627 に答える