diff options
author | David Robillard <d@drobilla.net> | 2018-11-24 10:40:32 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-11-24 12:25:09 +0100 |
commit | 5b655541690e71cceeef832b9370cfcb5fd182fd (patch) | |
tree | fbd102066ed520dd18926063426a8b8db9e3646b | |
parent | 4687ba6d8ccca30dc3cc2ad2c14e6a272eaf1f54 (diff) | |
download | autowaf-5b655541690e71cceeef832b9370cfcb5fd182fd.tar.gz autowaf-5b655541690e71cceeef832b9370cfcb5fd182fd.tar.bz2 autowaf-5b655541690e71cceeef832b9370cfcb5fd182fd.zip |
Add short configure option for ultra-strict flags
-rw-r--r-- | extras/autowaf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/autowaf.py b/extras/autowaf.py index c49bee7..5eb4c80 100644 --- a/extras/autowaf.py +++ b/extras/autowaf.py @@ -69,7 +69,7 @@ def set_options(opt, debug_by_default=False, test=False): opts.add_option('-s', '--strict', action='store_true', default=False, dest='strict', help="use strict compiler flags and show all warnings") - opts.add_option('--ultra-strict', action='store_true', default=False, + opts.add_option('-S', '--ultra-strict', action='store_true', default=False, dest='ultra_strict', help="use extremely strict compiler flags (likely noisy)") opts.add_option('--docs', action='store_true', default=False, dest='docs', |