From: Ramakrishnan Muthukrishnan Date: Tue, 26 Jan 2016 11:47:23 +0000 (+0530) Subject: setup.py: compile C modules with -Wextra warning flag X-Git-Url: https://git.rkrishnan.org/?p=tahoe-lafs%2Fzfec.git;a=commitdiff_plain;h=42dededf9d0ddbb165cdfccbd5acdf6e0600cb4b setup.py: compile C modules with -Wextra warning flag --- diff --git a/setup.py b/setup.py index 8a1a5b3..9b48d55 100755 --- a/setup.py +++ b/setup.py @@ -40,6 +40,7 @@ if DEBUGMODE: extra_compile_args.append("-O0") extra_compile_args.append("-g") extra_compile_args.append("-Wall") + extra_compile_args.append("-Wextra") extra_link_args.append("-g") undef_macros.append('NDEBUG')