From 152c2c910c9cda6e0beb1863c510c678300bdd7b Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Wed, 11 Sep 2013 16:51:53 +0300 Subject: Disable warning about uint64_t (long long) --- tests/SConstruct | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/SConstruct') diff --git a/tests/SConstruct b/tests/SConstruct index 26a513d5..3f4d7702 100644 --- a/tests/SConstruct +++ b/tests/SConstruct @@ -73,11 +73,14 @@ if 'gcc' in env['CC']: env.Append(CFLAGS = '-ansi -pedantic -g -O0 -Wall -Werror --coverage -fstack-protector-all') env.Append(LINKFLAGS = '--coverage') + # We currently need uint64_t anyway, even though ANSI C90 otherwise.. + env.Append(CFLAGS = '-Wno-long-long') + # More strict checks on the nanopb core env.Append(CORECFLAGS = '-Wextra -Wcast-qual -Wlogical-op -Wconversion') elif 'clang' in env['CC']: # CLang - env.Append(CFLAGS = '-ansi -pedantic -g -O0 -Wall -Werror') + env.Append(CFLAGS = '-ansi -g -O0 -Wall -Werror') env.Append(CORECFLAGS = ' -Wextra -Wcast-qual -Wconversion') elif 'cl' in env['CC']: # Microsoft Visual C++ -- cgit 1.2.3-korg