summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-03-08 03:55:27 (GMT)
committerSteven Knight <knight@baldmt.com>2004-03-08 03:55:27 (GMT)
commitdbd4196bcf65fab6c1947db2a70bbca17e07de3e (patch)
tree75560190ed99244fce19850c239b3f7d4c9da75e /doc
parent10e229b7a8e466d9fe1d193fa66a2bcd3fec3ee6 (diff)
downloadSCons-dbd4196bcf65fab6c1947db2a70bbca17e07de3e.zip
SCons-dbd4196bcf65fab6c1947db2a70bbca17e07de3e.tar.gz
SCons-dbd4196bcf65fab6c1947db2a70bbca17e07de3e.tar.bz2
Add a D language Tool. (Andy Friesen)
Diffstat (limited to 'doc')
-rw-r--r--doc/man/scons.114
1 files changed, 8 insertions, 6 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1
index bea43c3..2d7886b 100644
--- a/doc/man/scons.1
+++ b/doc/man/scons.1
@@ -958,6 +958,7 @@ as
bcc32
c++
cc
+dmd
dvipdf
dvips
f77
@@ -1506,9 +1507,9 @@ env.PostScript(target = 'bbb', source = 'bbb.dvi')
'\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
.IP Program()
.IP env.Program()
-Builds an executable given one or more object files or C, C++
-or Fortran source files.
-If any C, C++ or Fortran source files are specified,
+Builds an executable given one or more object files
+or C, C++, D, or Fortran source files.
+If any C, C++, D or Fortran source files are specified,
then they will be automatically
compiled to object files using the
.B Object
@@ -1586,7 +1587,7 @@ env.RMIC(target = 'outdir3',
Builds a shared library
(.so on a POSIX system, .dll on WIN32)
given one or more object files
-or C, C++ or Fortran source files.
+or C, C++, D or Fortran source files.
If any source files are given,
then they will be automatically
compiled to object files.
@@ -1676,7 +1677,7 @@ env.SharedObject(target = 'fff.obj', source = 'fff.for')
.IP StaticLibrary()
.IP env.StaticLibrary()
Builds a static library given one or more object files
-or C, C++ or Fortran source files.
+or C, C++, D or Fortran source files.
If any source files are given,
then they will be automatically
compiled to object files.
@@ -1709,7 +1710,7 @@ will raise an error if there is any mismatch.
.IP StaticObject()
.IP env.StaticObject()
Builds a static object file
-from one or more C, C++, or Fortran source files.
+from one or more C, C++, D, or Fortran source files.
Source files must have one of the following extensions:
.ES
@@ -1724,6 +1725,7 @@ Source files must have one of the following extensions:
.cxx C++ file
.c++ C++ file
.C++ C++ file
+ .d D file
.f Fortran file
.F WIN32: Fortran file
POSIX: Fortran file + C pre-processor