2013-01-16 3 views
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 

quelqu'un peut-il m'aider avec cela pour résoudre cette erreur msg? En essayant de compiler Android sur Windows avec Cygwin, c'est une douleur.obtenir cette erreur lors de la construction Android ndk

+1

Pouvez-vous joindre l'extrait de code qui vomissait l'erreur comme ci-dessus? – t0mm13b

+0

voici le code complet http://tny.cz/86523ebf en fait je construis andriod ocr –

+0

OP: S'il vous plaît! Le code réel, pas la sortie de la compilation et ne pas hotlinky à un autre site .... – t0mm13b

Répondre

1

Suivez les guides sur XDA-Developers.com pour compiler android sous Ubuntu Linux, c'est facile comme dans un environnement Windows Cygwin et ça marche bien :)

0

J'ai la même erreur et certaines solutions disent changer PLD de UPPERCASE en minuscules par exemple de "PLD" à "pld".

2

Décommentez la ligne ANDROID_JPEG_NO_ASSEMBLER du Android.mk, il est comme ça:

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

faire:

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

Essayez de changer la parenthèse qui suit l'instruction PLD aux supports. Cela est, changer

PLD (xx xx) 

à

PLD [xx xx] 
+0

réglé le problème dans mon cas – CpS

+0

il est travaillé pour moi .... merci –

Questions connexes