summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-10-21 03:52:32 (GMT)
committerSteven Knight <knight@baldmt.com>2003-10-21 03:52:32 (GMT)
commit7e8e9218735c50093658d386c2d2be8087486512 (patch)
tree5c48d3c715940861dc44abf024588cb7ff14b16e /doc
parente48bef4f0520f04d71dfa2654621f3aa8a4fabe9 (diff)
downloadSCons-7e8e9218735c50093658d386c2d2be8087486512.zip
SCons-7e8e9218735c50093658d386c2d2be8087486512.tar.gz
SCons-7e8e9218735c50093658d386c2d2be8087486512.tar.bz2
Support arbitrary header-file preambles when checking for #include files.
Diffstat (limited to 'doc')
-rw-r--r--doc/man/scons.142
1 files changed, 40 insertions, 2 deletions
diff --git a/doc/man/scons.1 b/doc/man/scons.1
index 9b11f6b..0c98c11 100644
--- a/doc/man/scons.1
+++ b/doc/man/scons.1
@@ -5112,6 +5112,15 @@ goes by and developers contribute new useful tests.)
Checks if
.I header
is usable in the specified language.
+.I header
+may be a list,
+in which case the last item in the list
+is the header file to be checked,
+and the previous list items are
+header files whose
+.B #include
+lines should precede the
+header line being checked for.
The optional argument
.I include_quotes
must be
@@ -5133,7 +5142,17 @@ This is a wrapper around
.B Configure.CheckHeader
which checks if
.I header
-is usable in the C language. The optional argument
+is usable in the C language.
+.I header
+may be a list,
+in which case the last item in the list
+is the header file to be checked,
+and the previous list items are
+header files whose
+.B #include
+lines should precede the
+header line being checked for.
+The optional argument
.I include_quotes
must be
a two character string, where the first character denotes the opening
@@ -5147,7 +5166,17 @@ This is a wrapper around
.B Configure.CheckHeader
which checks if
.I header
-is usable in the C++ language. The optional argument
+is usable in the C++ language.
+.I header
+may be a list,
+in which case the last item in the list
+is the header file to be checked,
+and the previous list items are
+header files whose
+.B #include
+lines should precede the
+header line being checked for.
+The optional argument
.I include_quotes
must be
a two character string, where the first character denotes the opening
@@ -5217,6 +5246,15 @@ Again,
specifies the library to check.
.I header
specifies a header to check for.
+.I header
+may be a list,
+in which case the last item in the list
+is the header file to be checked,
+and the previous list items are
+header files whose
+.B #include
+lines should precede the
+header line being checked for.
.I language
may be one of 'C','c','CXX','cxx','C++' and 'c++'.
.I call