Failure during testing
Thanks to Pearu's advice I have managed to get CVS SciPy built and installed on my Mac OS X (Jaguar) system. The problem is that most of my tests fail: Python 2.2 (#1, 07/14/02, 23:25:09) [GCC Apple cpp-precomp 6.14] on darwin Type "help", "copyright", "credits" or "license" for more information.
import scipy scipy.test(level=1) No test suite found for scipy.__cvs_version__ creating test suite for: scipy.common !! FAILURE building test for scipy.common /usr/local/apps/SciPy-CVS/lib/python/scipy/special/basic.py:5: ImportError: Failure linking new module (in ?) No test suite found for scipy.helpmod No test suite found for scipy.pilutil No test suite found for scipy.cow No test suite found for scipy.fftpack No test suite found for scipy.ga No test suite found for scipy.integrate No test suite found for scipy.interpolate creating test suite for: scipy.io.array_import No test suite found for scipy.io.data_store No test suite found for scipy.io.dumb_shelve No test suite found for scipy.io.dumbdbm_patched No test suite found for scipy.io.mio No test suite found for scipy.io.pickler No test suite found for scipy.io.pre___init__ exceptions.ImportError: Failure linking new module No test suite found for scipy.linalg No test suite found for anneal No test suite found for scipy.optimize.common_routines No test suite found for scipy.optimize.minpack No test suite found for scipy.optimize.optimize No test suite found for scipy.optimize.pre___init__ creating test suite for: scipy.optimize.zeros No test suite found for scipy.signal No test suite found for scipy.special No test suite found for scipy.stats FFEFTESTING CONVERGENCE
zero should be 1 function f2 cc.bisect : 1.0000000000001952 cc.ridder : 1.0000000000004661 cc.brenth : 0.9999999999999997 cc.brentq : 0.9999999999999577 function f3 cc.bisect : 1.0000000000001952 cc.ridder : 1.0000000000000000 cc.brenth : 1.0000000000000009 cc.brentq : 1.0000000000000011 function f4 cc.bisect : 1.0000000000001952 cc.ridder : 1.0000000000001454 cc.brenth : 0.9999999999993339 cc.brentq : 0.9999999999993339 function f5 cc.bisect : 1.0000000000001952 cc.ridder : 1.0000000000004574 cc.brenth : 0.9999999999991444 cc.brentq : 0.9999999999991444 function f6 cc.bisect : 1.0000000000001952 cc.ridder : 1.0000000000001310 cc.brenth : 1.0000000000003764 cc.brentq : 1.0000000000008440 . ====================================================================== ERROR: check_integer (test_array_import.test_read_array) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/apps/SciPy-CVS/lib/python/scipy/io/tests/test_array_import.py", line 55, in check_integer a = stats.randint(1,20,size=(3,4)) AttributeError: 'module' object has no attribute 'randint' ====================================================================== FAIL: check_complex (test_array_import.test_read_array) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/apps/SciPy-CVS/lib/python/scipy/io/tests/test_array_import.py", line 39, in check_complex a = rand(13,4) + 1j*rand(13,4) File "/usr/local/apps/SciPy-CVS/lib/python/scipy/common.py", line 222, in rand return stats.random(args) File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 211, in __getattr__ module = self._ppimport_importer() File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 183, in _ppimport_importer assert module is self,`module` AssertionError: <module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.pyc'> ====================================================================== FAIL: check_float (test_array_import.test_read_array) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/apps/SciPy-CVS/lib/python/scipy/io/tests/test_array_import.py", line 47, in check_float a = rand(3,4)*30 File "/usr/local/apps/SciPy-CVS/lib/python/scipy/common.py", line 222, in rand return stats.random(args) File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 211, in __getattr__ module = self._ppimport_importer() File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 183, in _ppimport_importer assert module is self,`module` AssertionError: <module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.pyc'> ====================================================================== FAIL: check_basic (test_array_import.test_numpyio) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/apps/SciPy-CVS/lib/python/scipy/io/tests/test_array_import.py", line 22, in check_basic a = 255*rand(20) File "/usr/local/apps/SciPy-CVS/lib/python/scipy/common.py", line 222, in rand return stats.random(args) File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 211, in __getattr__ module = self._ppimport_importer() File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 183, in _ppimport_importer assert module is self,`module` AssertionError: <module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.pyc'> ---------------------------------------------------------------------- Ran 5 tests in 0.074s FAILED (failures=3, errors=1) <unittest.TextTestRunner instance at 0x15bdc0>
What's going on here, and how do I fix it? Thanks again in advance. Andrew.
On Sun, 25 May 2003, Andrew Nesbit wrote:
Thanks to Pearu's advice I have managed to get CVS SciPy built and installed on my Mac OS X (Jaguar) system.
The problem is that most of my tests fail:
Python 2.2 (#1, 07/14/02, 23:25:09) [GCC Apple cpp-precomp 6.14] on darwin Type "help", "copyright", "credits" or "license" for more information.
import scipy scipy.test(level=1) No test suite found for scipy.__cvs_version__ creating test suite for: scipy.common !! FAILURE building test for scipy.common /usr/local/apps/SciPy-CVS/lib/python/scipy/special/basic.py:5: ImportError: Failure linking new module (in ?)
Could you investigate what causes this ImportError? The 5th line in special/basic.py is from Numeric import * Can you import Numeric directly?
====================================================================== FAIL: check_complex (test_array_import.test_read_array) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/apps/SciPy-CVS/lib/python/scipy/io/tests/test_array_import.py", line 39, in check_complex a = rand(13,4) + 1j*rand(13,4) File "/usr/local/apps/SciPy-CVS/lib/python/scipy/common.py", line 222, in rand return stats.random(args) File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 211, in __getattr__ module = self._ppimport_importer() File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 183, in _ppimport_importer assert module is self,`module` AssertionError: <module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.pyc'>
Please update your local SciPy CVS repository and reinstall scipy_core. Hopefully the latest version of ppimport.py gives more information on this failure. Pearu
Python 2.2 (#1, 07/14/02, 23:25:09) [GCC Apple cpp-precomp 6.14] on darwin Type "help", "copyright", "credits" or "license" for more information.
import scipy scipy.test(level=1) No test suite found for scipy.__cvs_version__ creating test suite for: scipy.common !! FAILURE building test for scipy.common /usr/local/apps/SciPy-CVS/lib/python/scipy/special/basic.py:5: ImportError: Failure linking new module (in ?)
Could you investigate what causes this ImportError? The 5th line in special/basic.py is
from Numeric import *
No, that is the 6th line. The 5th line is this: from cephes import * I have played around with this and found that there is some sort of conflict between importing cephes and importing scipy: $ cd /usr/local/lib/python/scipy/special $ python
from cephes import * import scipy Traceback (most recent call last): File "<stdin>", line 1, in ? File "/usr/local/apps/SciPy-CVS/lib/python/scipy/__init__.py", line 29, in ? from scipy_base import * File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/__init__.py", line 117, in ? import fastumath # no need to use scipy_base.fastumath ImportError: Failure linking new module
and another example (with the imports reversed): $ cd /usr/local/lib/python/scipy/special $ python
import scipy from cephes import * Traceback (most recent call last): File "<stdin>", line 1, in ? ImportError: Failure linking new module
This same problem doesn't occur for the specfun module.
====================================================================== FAIL: check_complex (test_array_import.test_read_array) ----------------------------------------------------------------------
[snip old results]
Please update your local SciPy CVS repository and reinstall scipy_core. Hopefully the latest version of ppimport.py gives more information on this failure.
OK, here it is: ====================================================================== FAIL: check_complex (test_array_import.test_read_array) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/apps/SciPy-CVS/lib/python/scipy/io/tests/test_array_import.py", line 39, in check_complex a = rand(13,4) + 1j*rand(13,4) File "/usr/local/apps/SciPy-CVS/lib/python/scipy/common.py", line 222, in rand return stats.random(args) File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 211, in __getattr__ module = self._ppimport_importer() File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 183, in _ppimport_importer assert module is self,`(module, self)` AssertionError: (<module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.pyc'>, <module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.py' [import error]>) Thanks for helping with this. Andrew.
On Sun, 25 May 2003, Andrew Nesbit wrote:
Python 2.2 (#1, 07/14/02, 23:25:09) [GCC Apple cpp-precomp 6.14] on darwin
[snip]
I have played around with this and found that there is some sort of conflict between importing cephes and importing scipy:
$ cd /usr/local/lib/python/scipy/special $ python
from cephes import * import scipy Traceback (most recent call last): File "<stdin>", line 1, in ? File "/usr/local/apps/SciPy-CVS/lib/python/scipy/__init__.py", line 29, in ? from scipy_base import * File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/__init__.py", line 117, in ? import fastumath # no need to use scipy_base.fastumath ImportError: Failure linking new module
and another example (with the imports reversed):
$ cd /usr/local/lib/python/scipy/special $ python
import scipy from cephes import * Traceback (most recent call last): File "<stdin>", line 1, in ? ImportError: Failure linking new module
This same problem doesn't occur for the specfun module.
These symptoms are very similar to ones reported as Python 2.2 bug in thread: http://groups.google.com/groups?hl=en&lr=lang_et|lang_en&ie=UTF-8&oe=UTF-8&safe=off&output=search&threadm=mailman.1011905382.1504.python-list%40python.org&rnum=1&prev=/groups%3Fhl%3Den%26lr%3Dlang_et%257Clang_en%26ie%3DUTF-8%26oe%3DUTF-8%26safe%3Doff%26output%3Dsearch%26selm%3Dmailman.1011905382.1504.python-list%2540python.org Try upgrading Python and let us know if it works.
====================================================================== FAIL: check_complex (test_array_import.test_read_array) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/apps/SciPy-CVS/lib/python/scipy/io/tests/test_array_import.py", line 39, in check_complex a = rand(13,4) + 1j*rand(13,4) File "/usr/local/apps/SciPy-CVS/lib/python/scipy/common.py", line 222, in rand return stats.random(args) File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 211, in __getattr__ module = self._ppimport_importer() File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 183, in _ppimport_importer assert module is self,`(module, self)` AssertionError: (<module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.pyc'>, <module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.py' [import error]>)
I think that this failure is related to the previous one. To remove ppimport layer in order to see the real traceback of the error (I'll try to fix this also in ppimport), add the following line ppimport = __import__ just after the line from ppimport import ppimport, ppimport_attr in scipy_base/__init__.py (you can do that also in installed scipy tree). Pearu
I have played around with this and found that there is some sort of conflict between importing cephes and importing scipy:
[snip]
This same problem doesn't occur for the specfun module.
These symptoms are very similar to ones reported as Python 2.2 bug in thread:
Try upgrading Python and let us know if it works.
I have upgraded Python to 2.3b1 and now it won't build: gcc -Wno-long-double -no-cpp-precomp -fno-common -dynamic -DNDEBUG -g -O3 -Wstrict-prototypes -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/include -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/include -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src -I/Users/andrew/src/SciPy-CVS/scipy/Lib/weave -I/Users/andrew/src/SciPy-CVS/scipy/Lib/weave/scxx -I/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3 -c /Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.cpp -o build/temp.darwin-6.6-Power_Macintosh-2.3/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.o /var/tmp//ccBnj93X.s:unknown:FATAL:can't create output file: build/temp.darwin-6.6-Power_Macintosh-2.3/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.o error: command 'gcc' failed with exit status 1 I've tried this with my personally-built Python 2.3b1 and also the MacPython-OSX-2.3b1 binary distribution. Any ideas as to what to do? Andrew.
On Mon, 26 May 2003, Andrew Nesbit wrote:
I have upgraded Python to 2.3b1 and now it won't build:
gcc -Wno-long-double -no-cpp-precomp -fno-common -dynamic -DNDEBUG -g -O3 -Wstrict-prototypes -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/include -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/include -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src -I/Users/andrew/src/SciPy-CVS/scipy/Lib/weave -I/Users/andrew/src/SciPy-CVS/scipy/Lib/weave/scxx -I/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3 -c /Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.cpp -o build/temp.darwin-6.6-Power_Macintosh-2.3/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.o
/var/tmp//ccBnj93X.s:unknown:FATAL:can't create output file: build/temp.darwin-6.6-Power_Macintosh-2.3/Users/andrew\ /src/SciPy-CVS/scipy/Lib_chaco/\ kiva/agg/src/../../../agg2/src/agg_gen_stroke.o
^^^^^^^^^ is this valid under MacOSX? I just executed scipy build for Python 2.3a0 (patched) under linux. I'll soon see if I get the same error.. otherwise this looks like a Py2.3 distutils bug. ... scipy builds fine with Python 2.3a0, I'll upgrade to Python2.3c1 and see if I can produce the error above.
error: command 'gcc' failed with exit status 1
I've tried this with my personally-built Python 2.3b1 and also the MacPython-OSX-2.3b1 binary distribution.
Any ideas as to what to do?
You can temporarily disable chaco in scipy/setup.py. Look for line separate_packages += chaco_packages and comment it out. Btw, could you update also your local scipy cvs tree? I have commited a patch for ppimport that should display more information on the failure that you reported earlier. Pearu
Btw, could you update also your local scipy cvs tree? I have commited a patch for ppimport that should display more information on the failure that you reported earlier.
Is this the failure that you are refering to (copied from previous post):
====================================================================== FAIL: check_complex (test_array_import.test_read_array) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/apps/SciPy-CVS/lib/python/scipy/io/tests/test_array_import.py", line 39, in check_complex a = rand(13,4) + 1j*rand(13,4) File "/usr/local/apps/SciPy-CVS/lib/python/scipy/common.py", line 222, in rand return stats.random(args) File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 211, in __getattr__ module = self._ppimport_importer() File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 183, in _ppimport_importer assert module is self,`(module, self)` AssertionError: (<module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.pyc'>, <module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.py' [import error]>)
Now that I have upgraded Python to 2.3b1 and updated from CVS that failure no longer occurs. Instead, I have the failures and errors available at http://www.cs.mu.oz.au/~alnesbit/log-scipy-test (the same as referred to in my previous post). I am running with the ppimport patch, so that log should show the extra information. Andrew.
On Mon, 26 May 2003, Andrew Nesbit wrote:
Btw, could you update also your local scipy cvs tree? I have commited a patch for ppimport that should display more information on the failure that you reported earlier.
Is this the failure that you are refering to (copied from previous post):
yes
====================================================================== FAIL: check_complex (test_array_import.test_read_array) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/apps/SciPy-CVS/lib/python/scipy/io/tests/test_array_import.py", line 39, in check_complex a = rand(13,4) + 1j*rand(13,4) File "/usr/local/apps/SciPy-CVS/lib/python/scipy/common.py", line 222, in rand return stats.random(args) File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 211, in __getattr__ module = self._ppimport_importer() File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/ppimport.py", line 183, in _ppimport_importer assert module is self,`(module, self)` AssertionError: (<module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.pyc'>, <module 'scipy.stats' from '/usr/local/lib/python/scipy/stats/__init__.py' [import error]>)
Now that I have upgraded Python to 2.3b1 and updated from CVS that failure no longer occurs.
Good, so the failure was due to the Mac related bug in Python 2.2.
Instead, I have the failures and errors available at http://www.cs.mu.oz.au/~alnesbit/log-scipy-test (the same as referred to in my previous post).
It's not too bad:) With Python 2.3b1+ (from yesterdays Python CVS) I also get KeyError's like ====================================================================== ERROR: check_chebyc (test_basic.test_chebyc) ---------------------------------------------------------------------- Traceback (most recent call last): File "/usr/local/apps/SciPy-CVS/lib/python/scipy/special/tests/test_basic.py", line 214, in check_chebyc chebc = chebyc(1)(.2) File "/usr/local/apps/SciPy-CVS/lib/python/scipy/special/orthogonal.py", line 398, in chebyc p = p * 2.0/p(2) File "/usr/local/apps/SciPy-CVS/lib/python/scipy_base/polynomial.py", line 445, in __getattr__ raise KeyError KeyError I'll see if it can be fixed for Py2.3... But as for other failures like numerous AssertionErrors in testing scipy_base and stats, I don't get them under Linux. Could you investigate the errors in scipy_base testing? You can do that separately from building scipy when changing the scipy_base code: cd scipy/scipy_core python setup.py install
import scipy_base scipy_base.test(1)
Pearu
On Mon, 26 May 2003, Andrew Nesbit wrote:
I have upgraded Python to 2.3b1 and now it won't build:
gcc -Wno-long-double -no-cpp-precomp -fno-common -dynamic -DNDEBUG -g -O3 -Wstrict-prototypes -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/include -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/include -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src -I/Users/andrew/src/SciPy-CVS/scipy/Lib/weave -I/Users/andrew/src/SciPy-CVS/scipy/Lib/weave/scxx -I/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3 -c /Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.cpp -o build/temp.darwin-6.6-Power_Macintosh-2.3/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.o
/var/tmp//ccBnj93X.s:unknown:FATAL:can't create output file: build/temp.darwin-6.6-Power_Macintosh-2.3/Users/andrew\ /src/SciPy-CVS/scipy/Lib_chaco/\ kiva/agg/src/../../../agg2/src/agg_gen_stroke.o
^^^^^^^^^ is this valid under MacOSX? I just executed scipy build for Python 2.3a0 (patched) under linux. I'll soon see if I get the same error.. otherwise this looks like a Py2.3 distutils bug. ... scipy builds fine with Python 2.3a0, I'll upgrade to Python2.3c1 (in python CVS) and see if I can produce the error above.
error: command 'gcc' failed with exit status 1
I've tried this with my personally-built Python 2.3b1 and also the MacPython-OSX-2.3b1 binary distribution.
Any ideas as to what to do?
You can temporarily disable chaco in scipy/setup.py. Look for line separate_packages += chaco_packages and comment it out. Or, try to use the latest 2.2 (that is 2.2.3). Btw, could you update also your local scipy cvs tree? I have commited a patch for ppimport that should display more information on the failure that you reported earlier. Pearu
On Mon, 26 May 2003, Andrew Nesbit wrote:
I have upgraded Python to 2.3b1 and now it won't build:
gcc -Wno-long-double -no-cpp-precomp -fno-common -dynamic -DNDEBUG -g -O3 -Wstrict-prototypes -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/include -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/include -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src -I/Users/andrew/src/SciPy-CVS/scipy/Lib/weave -I/Users/andrew/src/SciPy-CVS/scipy/Lib/weave/scxx -I/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3 -c /Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.cpp -o build/temp.darwin-6.6-Power_Macintosh-2.3/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.o
/var/tmp//ccBnj93X.s:unknown:FATAL:can't create output file: build/temp.darwin-6.6-Power_Macintosh-2.3/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.o
error: command 'gcc' failed with exit status 1
This is now fixed in Scipy CVS. I have tested it with Python 2.3b1+. Pearu
gcc -Wno-long-double -no-cpp-precomp -fno-common -dynamic -DNDEBUG -g -O3 -Wstrict-prototypes -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/include -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/include -I/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src -I/Users/andrew/src/SciPy-CVS/scipy/Lib/weave -I/Users/andrew/src/SciPy-CVS/scipy/Lib/weave/scxx -I/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3 -c /Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.cpp -o build/temp.darwin-6.6-Power_Macintosh-2.3/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.o
/var/tmp//ccBnj93X.s:unknown:FATAL:can't create output file: build/temp.darwin-6.6-Power_Macintosh-2.3/Users/andrew/src/SciPy-CVS/scipy/Lib_chaco/kiva/agg/src/../../../agg2/src/agg_gen_stroke.o
error: command 'gcc' failed with exit status 1
This is now fixed in Scipy CVS. I have tested it with Python 2.3b1+.
OK, great. It now compiles and installs properly. There are quite a few test failures and errors thought (about 60+ out of the 700+ total tests). The output is quite long, so I've put it up at http://www.cs.mu.oz.au/~alnesbit/log-scipy-test Andrew.
participants (3)
-
Andrew Nesbit -
Pearu Peterson -
Pearu Peterson