0
jni/../external/libjpeg/jidctfst.S: Assembler messages:
jni/../external/libjpeg/jidctfst.S:66: Error: missing ')'
jni/../external/libjpeg/jidctfst.S:66: Error: garbage following instruction -- 'pld (r2,#0)'
jni/../external/libjpeg/jidctfst.S:259: Error: missing ')'
jni/../external/libjpeg/jidctfst.S:259: Error: garbage following instruction -- 'pld (sp,#32)'
jni/../external/libjpeg/jidctfst.S:271: Error: missing ')'
jni/../external/libjpeg/jidctfst.S:271: Error: garbage following instruction -- 'pld (ip,#32)'
make: *** [obj/local/armeabi/objs/jpeg/jidctfst.o] Error 1

このエラーメッセージを解決するために誰かが私を助けることができますか?

4

4 に答える 4

2

Android.mk の ANDROID_JPEG_NO_ASSEMBLER 行のコメントを外します。次のようになります。

# temp fix until we understand why this broke cnn.com
#ANDROID_JPEG_NO_ASSEMBLER := true

それを行う:

# temp fix until we understand why this broke cnn.com
ANDROID_JPEG_NO_ASSEMBLER := true
于 2013-02-16T18:40:42.503 に答える
1

Cygwin を使用して Windows で Android をコンパイルしようとするのは面倒です。XDA-Developers.com のガイドに従って、Ubuntu Linux で Android をコンパイルします。Windows Cygwin 環境のように簡単で、正常に動作します:)

于 2013-01-16T21:33:02.290 に答える
0

私は同じエラーを抱えており、いくつかの解決策は、PLDを大文字から小文字に変更することを示し"PLD"てい"pld"ます。

于 2013-02-12T20:33:14.510 に答える