在构建Android ndk时出现此错误

0 android android-ndk

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
Run Code Online (Sandbox Code Playgroud)

任何人都可以帮我解决这个错误消息吗?

小智 9

尝试将PLD指令后的括号更改为括号.也就是说,改变

PLD (xx xx)
Run Code Online (Sandbox Code Playgroud)

PLD [xx xx]
Run Code Online (Sandbox Code Playgroud)