2016-07-29 4 views
0

Ich habe versucht, Python3 in AIX7.1 zu kompilieren."libpython3.5m.a: 0654-200 Kann die angegebene Datei nicht öffnen" Fehler beim Kompilieren von Python3 in AIX

Ich folge nur zwei einfachen Schritten.

./configure 
make 

Während der Kompilierung wird jedoch Fehler zurückgegeben.

nm: libpython3.5m.a: 0654-200 Cannot open the specified file. 
nm: No such file or directory 
ld: 0711-596 SEVERE ERROR: Object Python/ceval.o 
     An RLD for section 2 (.data) refers to symbol 0, 
     but the storage class of the symbol is not C_EXT or C_HIDEXT. 

Wie kann ich es lösen?

Antwort

0

Es ist eine ältere Diskussion dieses Problems bei

https://bugs.python.org/issue9799

scheint es, könnte ein Problem mit der Implementierung von berechneten gotos xlc Compilers sein.

Die Lösung war es, diese Option deaktivieren über --ohne berechneten-gotos

./configure --without-computed-gotos 
Verwandte Themen