clarify a flag in configure.py
authorEvan Martin <martine@danga.com>
Wed, 2 May 2012 03:46:34 +0000 (20:46 -0700)
committerEvan Martin <martine@danga.com>
Wed, 2 May 2012 03:46:34 +0000 (20:46 -0700)
(The -g flag is always on, --debug just adds e.g. libstdc++'s extra
debugging features.)

Related to issue #286.

configure.py

index bd3da67..8f965c8 100755 (executable)
@@ -36,7 +36,7 @@ parser.add_option('--host',
                   help='host platform (' + '/'.join(platforms) + ')',
                   choices=platforms)
 parser.add_option('--debug', action='store_true',
-                  help='enable debugging flags',)
+                  help='enable debugging extras',)
 parser.add_option('--profile', metavar='TYPE',
                   choices=profilers,
                   help='enable profiling (' + '/'.join(profilers) + ')',)