git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4657 626c5289-ae23-0410-ae9c-e8d60b6d4f22
31 lines
1.2 KiB
Text
31 lines
1.2 KiB
Text
Version 1.3.20 (In progress)
|
|
============================
|
|
|
|
04/02/2003: cheetah (William Fulton)
|
|
Build improvements for multiple builds. This allows one to build
|
|
the SWIG executable and runtime libraries for different platforms/compilers
|
|
etc by running configure in different directories. This isn't 100% just
|
|
yet and won't be until libtool is better configured... a 'configure' and
|
|
'make distclean' needs to be run in the root directory before it all works.
|
|
For example:
|
|
$ ./configure
|
|
$ make distclean
|
|
$ mkdir config1; cd config1; ../configure CC=gcc CXX=g++; make; cd ..
|
|
$ mkdir config2; cd config2; ../configure CC=cc CXX=c++; make; cd ..
|
|
|
|
To be improved. A 'make check' does not work yet either.
|
|
|
|
04/01/2003: beazley
|
|
Fixed template partial specialization argument expansion bug.
|
|
This showed up when trying to use std_vector.i with vectors
|
|
of pointers.
|
|
|
|
03/31/2003: cheetah (William Fulton)
|
|
Fix for parallel make builds of SWIG, for example
|
|
make -j 4
|
|
Build failure reported by Bill Clarke.
|
|
|
|
03/28/2003: beazley
|
|
Released 1.3.19.
|
|
|
|
|