diff --git a/CHANGES.current b/CHANGES.current index 05f2722a0..6d72022db 100644 --- a/CHANGES.current +++ b/CHANGES.current @@ -1,5 +1,18 @@ Version 1.3.21 (in progress) ================================== +01/10/2004: cheetah (William Fulton) + The output format for both warnings and errors can be selected for + integration with your favourite IDE/editor. Editors and IDEs can usually + parse error messages and if in the appropriate format will easily take you + directly to the source of the error. The standard format is used by + default except on Windows where the Microsoft format is used by default. + These can be overridden using command line options, for example: + + $ swig -python -Fstandard example.i + example.i:4: Syntax error in input. + $ swig -python -Fmicrosoft example.i + example.i(4): Syntax error in input. + 01/09/2004: beazley Fixed [ 871909 ] simple namespace problem. This was a problem using anonymous structures in a namespace. diff --git a/Doc/Manual/SWIG.html b/Doc/Manual/SWIG.html index 6f6d2df72..88752813f 100644 --- a/Doc/Manual/SWIG.html +++ b/Doc/Manual/SWIG.html @@ -107,16 +107,18 @@ following options and a filename like this: -tcl Generate Tcl wrappers -xml Generate XML wrappers -c++ Enable C++ parsing +-Dsymbol Define a preprocessor symbol +-Fstandard Display error/warning messages in commonly used format +-Fmicrosoft Display error/warning messages in Microsoft format +-help Display all options -Idir Add a directory to the file include path -lfile Include a SWIG library file. +-module name Set the name of the SWIG module -noruntime Generate raw wrapper code (omit supporting code) -o outfile Name of output file -outdir dir Set language specific files output directory --module name Set the name of the SWIG module --Dsymbol Define a preprocessor symbol --version Show SWIG version number -swiglib Show location of SWIG library --help Display all options +-version Show SWIG version number @@ -2655,4 +2657,4 @@ The bottom line: don't do this.
SWIG 1.3 - Last Modified : August 7, 2003