diff --git a/tools/autowaf.py b/tools/autowaf.py index 11251305df..b6d1975d69 100644 --- a/tools/autowaf.py +++ b/tools/autowaf.py @@ -66,10 +66,10 @@ def set_options(opt, debug_by_default=False): # Build options if debug_by_default: opt.add_option('--optimize', action='store_false', default=True, dest='debug', - help="Build optimized binaries") + help="Build optimized binaries (not debug)") else: opt.add_option('--debug', action='store_true', default=False, dest='debug', - help="Build debuggable binaries") + help="Build debuggable binaries (not optimized)") opt.add_option('--pardebug', action='store_true', default=False, dest='pardebug', help="Build parallel-installable debuggable libraries with D suffix")