aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-04-29 12:49:16 +0000
committerlloyd <[email protected]>2011-04-29 12:49:16 +0000
commitdcdcafcc235f2f366022008f596a71cbbb4fadf9 (patch)
tree775d42daf2ab0df4874b17d697cece0d5a7479c8 /configure.py
parentebd36d0ba56a493e26fee7736d17db4a68e9ff2d (diff)
Log that we are assuming the existence of TR1 during configure
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py17
1 files changed, 11 insertions, 6 deletions
diff --git a/configure.py b/configure.py
index f5cd34336..9e108cf30 100755
--- a/configure.py
+++ b/configure.py
@@ -1580,7 +1580,7 @@ def main(argv = None):
logging.debug("Converting '%s' to 'cygwin'", options.os)
options.os = 'cygwin'
- logging.info('Guessing target OS is %s (--os to set)' % (options.os))
+ logging.info('Guessing target OS is %s (use --os to set)' % (options.os))
if options.compiler is None:
if options.os == 'windows':
@@ -1592,7 +1592,7 @@ def main(argv = None):
options.compiler = 'msvc'
else:
options.compiler = 'gcc'
- logging.info('Guessing to use compiler %s (--cc to set)' % (
+ logging.info('Guessing to use compiler %s (use --cc to set)' % (
options.compiler))
if options.compiler not in ccinfo:
@@ -1615,7 +1615,7 @@ def main(argv = None):
if options.cpu is None:
(options.arch, options.cpu) = guess_processor(archinfo)
- logging.info('Guessing target processor is a %s/%s (--cpu to set)' % (
+ logging.info('Guessing target processor is a %s/%s (use --cpu to set)' % (
options.arch, options.cpu))
else:
cpu_from_user = options.cpu
@@ -1656,12 +1656,17 @@ def main(argv = None):
options.extra_flags = ' -fpermissive'
if options.with_tr1 == None:
- options.with_tr1 = ('system' if ccinfo[options.compiler].has_tr1 else 'none')
+ if ccinfo[options.compiler].has_tr1:
+ logging.info('Assuming %s has TR1 (use --with-tr1=none to disable)' % (
+ options.compiler))
+ options.with_tr1 = 'system'
+ else:
+ options.with_tr1 = 'none'
if options.with_sphinx is None:
if have_program('sphinx-build'):
- logging.info('Found sphinx-build, will enable; ' +
- 'use --without-sphinx to disable')
+ logging.info('Found sphinx-build, will enable ' +
+ '(use --without-sphinx to disable)')
options.with_sphinx = True
if options.gen_amalgamation: