[issue22424] make: *** [Objects/unicodeobject.o] Error 1

2014-09-16 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: -165559672 resolution: fixed -> not a bug status: open -> closed ___ Python tracker ___ ___ Pyth

[issue22424] make: *** [Objects/unicodeobject.o] Error 1

2014-09-16 Thread bono wang
bono wang added the comment: Usually, you can workaround GCC bugs by disabling optimizations. You can try to modify Makefile to replace "-O3" with "-O2" or even "-O0" (disable all optimizations), and then try to run "make" again. donethanks a lot -- nosy: +165559672 resolution:

[issue22424] make: *** [Objects/unicodeobject.o] Error 1

2014-09-16 Thread STINNER Victor
STINNER Victor added the comment: > i really dont know how to fix it It's a GCC bug, not a Python bug: "gcc: Internal error: ...". What is your OS? What is your GCC version? How much memory do you have? Do you get the same error if you run "make" again? Try to run "gcc -pthread -c -DNDEBUG -

[issue22424] make: *** [Objects/unicodeobject.o] Error 1

2014-09-16 Thread bono wang
New submission from bono wang: when i was upgrade from py 2.6 to py 3.3 the error is show up # make && make install gcc -pthread -c -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes-I. -I./Include-DPy_BUILD_CORE -o Modules/python.o ./Modules/python.c gcc -pthread -c -DNDEBUG -g -fwra