From 071f3e79c26fefbf489b5dd531cda281548b5fe2 Mon Sep 17 00:00:00 2001 From: Mads Kiilerich Date: Sun, 23 Jan 2022 13:50:21 +0100 Subject: [PATCH] configure: clarify that --optimize just is the opposite of --debug Optimize is just "normal". --- tools/autowaf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")