0

我尝试使用scipy.weave用于数值优化的包,并在调用中遇到 CompileError scipy.weave.inline

一些实验带来了一个最小的失败示例:

import scipy.weave
scipy.weave.inline('printf("%d\\n",1);')

这导致我出于空间原因将大量错误转储放在 pastebin 上:http: //pastebin.com/0QR4kq2V

转储中的第一个错误是

/Developer/SDKs/MacOSX10.5.sdk/usr/include/c++/4.2.1/complex:47:28: error: bits/c++config.h: No such file or directory

最后的输出是

CompileError: error: Command "g++ -fno-strict-aliasing -fno-common -dynamic -arch i386 -isysroot /Developer/SDKs/MacOSX10.5.sdk -DNDEBUG -g -O3 -arch i386 -isysroot /Developer/SDKs/MacOSX10.5.sdk -I/Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/scipy/weave -I/Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/scipy/weave/scxx -I/Library/Frameworks/Python.framework/Versions/7.3/lib/python2.7/site-packages/numpy/core/include -I/Library/Frameworks/Python.framework/Versions/7.3/include/python2.7 -c /Users/mik/.python27_compiled/sc_f6039f30c0a12f4687924b6a12ef83730.cpp -o /var/folders/_z/qd8rt65n1n56_nvv4nyy7xlh0000gn/T/mik/python27_intermediate/compiler_ecdbc4f3f030692747d93319f8d429b2/Users/mik/.python27_compiled/sc_f6039f30c0a12f4687924b6a12ef83730.o" failed with exit status 1

我运行 MacOSX 10.8.4,

> g++ --version
i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

> python --version
Python 2.7.3 -- EPD 7.3-2 (32-bit)
4

1 回答 1

2

我自己根本没有使用过 weave,所以我不知道它是否有特定的 SDK 要求,但我怀疑问题是您不应该将 10.5 SDK 与您似乎正在使用的较新 Xcode 一起使用。我也有那个版本,它只安装了 10.7 和 10.8 SDK。几个版本的 Xcode 停止使用 /Developer 文件夹,现在它都安装在 Xcode 应用程序包中。所以我会尝试的第一件事是将 /Developer 移到某个地方,然后再次尝试构建,看看是否能解决它。如果是这样,那么您应该能够完全删除 /Developer。

于 2013-08-09T06:50:34.340 回答