diff options
author | Steven Knight <knight@baldmt.com> | 2003-08-13 05:56:44 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-08-13 05:56:44 (GMT) |
commit | 9509a572ba9977ab49d2fe19475a0f7034618ac6 (patch) | |
tree | ce68c6b7f64299bf52db9ba18bb8a3f44e89774a /doc/man/scons.1 | |
parent | 94b5aa145df7b763a262dd163203e20879f242f3 (diff) | |
download | SCons-9509a572ba9977ab49d2fe19475a0f7034618ac6.zip SCons-9509a572ba9977ab49d2fe19475a0f7034618ac6.tar.gz SCons-9509a572ba9977ab49d2fe19475a0f7034618ac6.tar.bz2 |
Add SWIG support.
Diffstat (limited to 'doc/man/scons.1')
-rw-r--r-- | doc/man/scons.1 | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1 index b9849c6..aaf6c0f 100644 --- a/doc/man/scons.1 +++ b/doc/man/scons.1 @@ -931,6 +931,7 @@ sgilink sunar suncc sunlink +swig tar tex yacc @@ -3498,6 +3499,57 @@ in which the command should be executed. '\".IP SVNFLAGS '\"General options that are passed to Subversion. +.IP SWIG +The scripting language wrapper and interface generator. + +.IP SWIGCFILESUFFIX +The suffix that will be used for intermediate C +source files generated by +the scripting language wrapper and interface generator. +The default value is +.BR _wrap$CFILESUFFIX . +By default, this value is used whenever the +.B -c++ +option is +.I not +specified as part of the +.B SWIGFLAGS +construction variable. + +.IP SWIGCOM +The command line used to call +the scripting language wrapper and interface generator. + +.IP SWIGCXXFILESUFFIX +The suffix that will be used for intermediate C++ +source files generated by +the scripting language wrapper and interface generator. +The default value is +.BR _wrap$CFILESUFFIX . +By default, this value is used whenever the +.B -c++ +option is specified as part of the +.B SWIGFLAGS +construction variable. + +.IP SWIGFLAGS +General options passed to +the scripting language wrapper and interface generator. +This is where you should set +.BR -python , +.BR -perl5 , +.BR -tcl , +or whatever other options you want to specify to SWIG. +If you set the +.B -c++ +option in this variable, +.B scons +will, by default, +generate a C++ intermediate source file +with the extension that is specified as the +.B $CXXFILESUFFIX +variable. + .IP TAR The tar archiver. |