From numpy-svn at scipy.org Sat Dec 1 00:07:17 2007 From: numpy-svn at scipy.org (numpy-svn at scipy.org) Date: Fri, 30 Nov 2007 23:07:17 -0600 (CST) Subject: [Numpy-svn] r4515 - branches/numpy.scons/numpy/distutils/command Message-ID: <20071201050717.5001CC7C04A@new.scipy.org> Author: cdavid Date: 2007-11-30 23:06:52 -0600 (Fri, 30 Nov 2007) New Revision: 4515 Modified: branches/numpy.scons/numpy/distutils/command/scons.py Log: Start working on getting C++ compiler from distutils for scons Modified: branches/numpy.scons/numpy/distutils/command/scons.py =================================================================== --- branches/numpy.scons/numpy/distutils/command/scons.py 2007-11-30 03:58:34 UTC (rev 4514) +++ branches/numpy.scons/numpy/distutils/command/scons.py 2007-12-01 05:06:52 UTC (rev 4515) @@ -197,6 +197,17 @@ if self.fcompiler is not None: self.fcompiler.customize(self.distribution) + # C++ compiler + cxxcompiler = new_compiler(compiler = compiler_type, + verbose = self.verbose, + dry_run = self.dry_run, + force = self.force) + if cxxcompiler is not None: + cxxcompiler.customize(self.distribution, need_cxx = 1) + cxxcompiler.customize_cmd(self) + self.cxxcompiler = cxxcompiler.cxx_compiler() + #print self.cxxcompiler.compiler_cxx[0] + def run(self): # XXX: when a scons script is missing, scons only prints warnings, and # does not return a failure (status is 0). We have to detect this from From numpy-svn at scipy.org Sat Dec 1 13:09:55 2007 From: numpy-svn at scipy.org (numpy-svn at scipy.org) Date: Sat, 1 Dec 2007 12:09:55 -0600 (CST) Subject: [Numpy-svn] r4516 - in trunk/numpy/doc/swig: . doc Message-ID: <20071201180955.29E9D39C077@new.scipy.org> Author: wfspotz at sandia.gov Date: 2007-12-01 12:09:40 -0600 (Sat, 01 Dec 2007) New Revision: 4516 Modified: trunk/numpy/doc/swig/doc/numpy_swig.html trunk/numpy/doc/swig/doc/numpy_swig.pdf trunk/numpy/doc/swig/doc/numpy_swig.txt trunk/numpy/doc/swig/numpy.i trunk/numpy/doc/swig/pyfragments.swg Log: Changed setting of fortran-order array's flag; corrected documentaion Modified: trunk/numpy/doc/swig/doc/numpy_swig.html =================================================================== --- trunk/numpy/doc/swig/doc/numpy_swig.html 2007-12-01 05:06:52 UTC (rev 4515) +++ trunk/numpy/doc/swig/doc/numpy_swig.html 2007-12-01 18:09:40 UTC (rev 4516) @@ -5,7 +5,7 @@ numpy.i: a SWIG Interface File for NumPy - +