我在 Mac OSX Mountain Lion 上构建 MySQLdb 时遇到问题。从 OSX Lion 升级到 OSX Mountain Lion 后,我还下载并安装了 Xcode 4.4。然后,我去了 Xcode 的 Preference > Downloads 并安装了命令行工具。
我已经下载了 MySQL-python 版本。1.2.3 来自http://sourceforge.net/projects/mysql-python/
当我跑
python setup.py build
我收到以下消息:
running build
running build_py
copying MySQLdb/release.py -> build/lib.macosx-10.6-intel-2.7/MySQLdb
running build_ext
building '_mysql' extension
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic -g -O2 -DNDEBUG -g -O3 -Dversion_info=(1,2,3,'final',0) -D__version__=1.2.3 -I/usr/local/mysql/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c _mysql.c -o build/temp.macosx-10.6-intel-2.7/_mysql.o -Os -g -fno-common -fno-strict-aliasing -arch x86_64
unable to execute gcc-4.2: No such file or directory
error: command 'gcc-4.2' failed with exit status 1
但是,gcc 存在。当我跑
gcc
我明白了
i686-apple-darwin11-llvm-gcc-4.2: no input files
下面是我发现的一个类似问题,但它的解决方案,这正是我已经做过的,对我不起作用。