librb: Specify -Wno-unused-parameter

This commit is contained in:
Simon Arlott 2019-09-15 11:12:44 +01:00
parent 5889d67dea
commit 53aeb0305a
No known key found for this signature in database
GPG key ID: 49BFFEEFD4C3ED53
2 changed files with 7 additions and 7 deletions

View file

@ -19,7 +19,7 @@ matrix:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-4.8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
env: COMPILER=gcc-4.8 CFLAGS="-Werror -Wno-unused-value -Wno-unused-parameter -Wno-unused-variable"
env: COMPILER=gcc-4.8
- os: linux
compiler: gcc
@ -27,7 +27,7 @@ matrix:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-4.9', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
env: COMPILER=gcc-4.9 CFLAGS="-Werror -Wno-unused-value -Wno-unused-parameter -Wno-unused-variable"
env: COMPILER=gcc-4.9
- os: linux
compiler: gcc
@ -35,7 +35,7 @@ matrix:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-5', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
env: COMPILER=gcc-5 CFLAGS="-Werror -Wno-unused-value -Wno-unused-parameter -Wno-unused-variable"
env: COMPILER=gcc-5
- os: linux
compiler: gcc
@ -43,7 +43,7 @@ matrix:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-7', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
env: COMPILER=gcc-7 CFLAGS="-Werror -Wno-unused-value -Wno-unused-parameter -Wno-unused-variable"
env: COMPILER=gcc-7
- os: linux
compiler: gcc
@ -51,7 +51,7 @@ matrix:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-8', 'automake', 'autoconf', 'libtool', 'shtool', 'libsqlite3-dev', 'python-sphinx', 'texinfo']
env: COMPILER=gcc-8 CFLAGS="-Werror -Wno-unused-value -Wno-unused-parameter -Wno-unused-variable"
env: COMPILER=gcc-8
- os: linux
compiler: clang
@ -72,7 +72,7 @@ cache:
script:
- bash autogen.sh
- CC=$COMPILER ./configure --with-shared-sqlite --with-assert=hard --enable-warnings
- CC=$COMPILER CFLAGS="-Werror -Wno-unused-value -Wno-unused-parameter -Wno-unused-variable" ./configure --with-shared-sqlite --with-assert=hard --enable-warnings
- make -j4
- "if [ ${TRAVIS_OS_NAME} != 'osx' ]; then make check; fi"
- make install

View file

@ -449,7 +449,7 @@ fi
AC_ARG_ENABLE(warnings,
AC_HELP_STRING([--enable-warnings],[Enable all sorts of warnings for debugging.]),
[CFLAGS="$CFLAGS -Wall -Werror -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings -W -Wno-unused -Wunused-function -Wunused-variable"],[])
[CFLAGS="$CFLAGS -Wall -Werror -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings -W -Wno-unused -Wunused-function -Wunused-variable -Wno-unused-parameter"],[])
AC_SUBST(LDFLAGS)
AC_SUBST(PICFLAGS)