From 3686fe1a60c875eacadf37f37c73c6525acbf221 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 14 Aug 2020 10:24:18 +0200 Subject: Remove redundant CFLAGS These are set by waf as appropriate based on the type of target. --- extras/autowaf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extras/autowaf.py') diff --git a/extras/autowaf.py b/extras/autowaf.py index e8ba561..3d4c09a 100644 --- a/extras/autowaf.py +++ b/extras/autowaf.py @@ -532,8 +532,8 @@ def configure(conf): if Options.options.debug: if conf.env['MSVC_COMPILER']: - conf.env['CFLAGS'] = ['/Od', '/Z7', '/MTd', '/FS'] - conf.env['CXXFLAGS'] = ['/Od', '/Z7', '/MTd', '/FS'] + conf.env['CFLAGS'] = ['/Od', '/Z7'] + conf.env['CXXFLAGS'] = ['/Od', '/Z7'] conf.env['LINKFLAGS'] = ['/DEBUG', '/MANIFEST'] else: conf.env['CFLAGS'] = ['-O0', '-g'] -- cgit v1.2.1