From 4225dd4ed1e15bc567f8058283ad01a9df5f1b4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Sun, 22 Dec 2013 15:44:44 +0100 Subject: [PATCH] Compile with -Wno-unused-parameter --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index e58e9ac..b97e444 100644 --- a/SConstruct +++ b/SConstruct @@ -93,6 +93,7 @@ if os.environ.has_key('CC'): env.AddMethod(InstallPerm) env.Append(CFLAGS = ['-std=gnu99','-Wall', '-Wextra', '-Wundef', '-Wcast-qual','-Wshadow' ,'-Wcast-align','-pipe', '-ggdb', '-pthread']) +env.Append(CFLAGS = ['-Wno-unused-parameter']) env.Append(LINKFLAGS = ['-O2', '-pthread']) env.Append(CPPDEFINES = ['_FILE_OFFSET_BITS=64']) env.Append(CPPPATH = ['#include'])