2009-12-02 124 views
0

首先,我对这一切都很陌生。
我最近升级到Snow Leopard并安装了Xcode + iPhone开发包3.1.2。 我继续安装Django框架+ MYSQLDB处理程序。在构建阶段,终端向我显示gcc退出状态1错误。但我已经安装了Xcode?Xcode gcc退出状态1

我哪里错了?

此外,当试图解决问题时,我安装了雪豹DVD附带的Xcode。仍然是同样的错误。

现在我想我应该完全删除Xcode并进行全新安装?

是ver.3.1.2特有的32位?请帮助我。

下面是完整的错误:

Amit-Vermas-MacBook:mysql-python-1.2.2 amitverma$ gcc-4.0 
i686-apple-darwin10-gcc-4.0.1: no input files 
Amit-Vermas-MacBook:mysql-python-1.2.2 amitverma$ python setup.py build 
running build 
running build_py 
copying MySQLdb/release.py -> build/lib.macosx-10.3-i386-2.5/MySQLdb 
running build_ext 
building '_mysql' extension 
gcc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -Dversion_info=(1,2,2,'final',0) -D__version__=1.2.2 -I/usr/local/mysql/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c _mysql.c -o build/temp.macosx-10.3-i386-2.5/_mysql.o -g -Os -arch x86_64 -fno-common -D_P1003_1B_VISIBLE -DSIGNAL_WITH_VIO_CLOSE -DSIGNALS_DONT_BREAK_READ -DIGNORE_SIGHUP_SIGQUIT -DDONT_DECLARE_CXA_PURE_VIRTUAL 
cc1: error: unrecognized command line option "-Wno-long-double" 
error: command 'gcc' failed with exit status 1 

回答

0

它通常也显示为什么一个编译失败。你可以给“gcc退出代码1”之前的文字或类似的东西?也可能是源文件。

也寻找这个问题上的其他线程,如this one。谷歌或堆栈溢出的好搜索条件是豹和MySQLdb。

1

我不确定你是否解决了你的问题。从Mac OS 10.4升级到10.6后,我遇到了完全相同的问题。

以下是一些博客文章,在预感中,我运行了setup.py指向一个较旧的gcc版本(gcc-4.0)。

CC = '在/ usr/bin中/ GCC-4.0' 蟒蛇的setup.py建立

构建遇到一些警告。

running build 
running build_py 
copying MySQLdb/release.py -> build/lib.macosx-10.3-i386-2.5/MySQLdb 
running build_ext 
building '_mysql' extension 
/usr/bin/gcc-4.0 -isysroot /Developer/SDKs/MacOSX10.4u.sdk -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic -DNDEBUG -g -O3 -Dversion_info=(1,2,3,'gamma',1) -D__version__=1.2.3c1 -I/usr/local/mysql/include -I/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5 -c _mysql.c -o build/temp.macosx-10.3-i386-2.5/_mysql.o -g -Os -arch i386 -fno-common -D_P1003_1B_VISIBLE -DSIGNAL_WITH_VIO_CLOSE -DSIGNALS_DONT_BREAK_READ -DIGNORE_SIGHUP_SIGQUIT -DDONT_DECLARE_CXA_PURE_VIRTUAL 
In file included from _mysql.c:36: 
/usr/local/mysql/include/my_config.h:1050:1: warning: "HAVE_WCSCOLL" redefined 
In file included from /Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/Python.h:8, 
       from pymemcompat.h:10, 
       from _mysql.c:29: 
/Library/Frameworks/Python.framework/Versions/2.5/include/python2.5/pyconfig.h:724:1: warning: this is the location of the previous definition 
gcc -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk -g -bundle -undefined dynamic_lookup build/temp.macosx-10.3-i386-2.5/_mysql.o -L/usr/local/mysql/lib -lmysqlclient_r -lz -lm -lmygcc -o build/lib.macosx-10.3-i386-2.5/_mysql.so 
ld: warning: in build/temp.macosx-10.3-i386-2.5/_mysql.o, file is not of required architecture 
ld: warning: in /usr/local/mysql/lib/libmysqlclient_r.dylib, file is not of required architecture 
ld: warning: in /usr/local/mysql/lib/libmygcc.a, file is not of required architecture 

再次运行相同的命令。

现在一切正常,现在神奇。安装也完成了。该模块按预期工作。

0

如果它有帮助,我用sym链接解决了这个问题,我认为它适用于你。我写了这个与我的版本的海湾合作委员会在脑海里,这是4.2:

cd /usr/bin 
rm cc gcc c++ g++ 
ln -s gcc-4.2 cc 
ln -s gcc-4.2 gcc 
ln -s c++-4.2 c++ 
ln -s g++-4.2 g++ 
ln -s gcc-4.2 gcc-4.0 

有你去!

相关问题