From 11db2a22a39b7151fb242070aee03bfa02e48b81 Mon Sep 17 00:00:00 2001 From: Mark VanderVoord Date: Thu, 8 May 2014 14:43:07 -0400 Subject: [PATCH] * If people are asking us to do things like "const char const *", then we shouldn't further complain about it. --- targets/gcc.yml | 5 +++-- targets/gcc_64.yml | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/targets/gcc.yml b/targets/gcc.yml index 8a625b2..52b73e2 100644 --- a/targets/gcc.yml +++ b/targets/gcc.yml @@ -9,6 +9,7 @@ compiler: - '-c' - '-Wall' - '-Wunused-parameter' + - '-Wno-duplicate-decl-specifier' - '-Wno-address' - '-std=c99' - '-pedantic' @@ -31,7 +32,7 @@ compiler: prefix: '-o' extension: '.o' destination: *systest_build_path - + linker: path: gcc options: @@ -46,7 +47,7 @@ linker: extension: '.exe' destination: *systest_build_path -unsupported: +unsupported: - unity_64bit_support - callingconv diff --git a/targets/gcc_64.yml b/targets/gcc_64.yml index 7a725cb..cba6a08 100644 --- a/targets/gcc_64.yml +++ b/targets/gcc_64.yml @@ -10,6 +10,7 @@ compiler: - '-m64' - '-Wall' - '-Wunused-parameter' + - '-Wno-duplicate-decl-specifier' - '-Wno-address' - '-std=c99' - '-pedantic'