summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/SConf.py
diff options
context:
space:
mode:
authoranatoly techtonik <techtonik@gmail.com>2014-07-05 09:56:20 (GMT)
committeranatoly techtonik <techtonik@gmail.com>2014-07-05 09:56:20 (GMT)
commitd8f294851e83c691df90373ec45dad97b28000c5 (patch)
tree22929630ef8ede336bfb81dd5a7a5bd1e0514d86 /src/engine/SCons/SConf.py
parent6ab5db7fb1f1abd580cee149605ff632289723ad (diff)
downloadSCons-d8f294851e83c691df90373ec45dad97b28000c5.zip
SCons-d8f294851e83c691df90373ec45dad97b28000c5.tar.gz
SCons-d8f294851e83c691df90373ec45dad97b28000c5.tar.bz2
doc: Update revised SConf description
Diffstat (limited to 'src/engine/SCons/SConf.py')
-rw-r--r--src/engine/SCons/SConf.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/src/engine/SCons/SConf.py b/src/engine/SCons/SConf.py
index dd93269..d6a70ec 100644
--- a/src/engine/SCons/SConf.py
+++ b/src/engine/SCons/SConf.py
@@ -2,14 +2,13 @@
Autoconf-like configuration support.
-In other words, this package allows to run series of tests to detect
-capabilities of current system and generate config files (header files
-in C/C++) that turn on system-specific options and optimizations.
-
-For example, it is possible to detect if optional libraries are present
-on current system and generate config that makes compiler include them.
-C compilers do not have ability to catch ImportError if some library is
-not found, so these checks should be done externally.
+In other words, SConf allows to run tests on the build machine to detect
+capabilities of system and do some things based on result: generate config
+files, header files for C/C++, update variables in environment.
+
+Tests on the build system can detect if compiler sees header files, if
+libraries are installed, if some command line options are supported etc.
+
"""
#