aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2021-04-26 08:57:28 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2022-07-23 13:59:49 +0000
commit32f517f5d6efb9fb7178fd9a9614fbf64aff963e (patch)
tree44dc33f718dd892048870739b6093d2b6e26d4cd /configure.ac
parent757895b8ee2d6b82630f10d0a19abc3f56e09c44 (diff)
downloadriscv-openocd-32f517f5d6efb9fb7178fd9a9614fbf64aff963e.zip
riscv-openocd-32f517f5d6efb9fb7178fd9a9614fbf64aff963e.tar.gz
riscv-openocd-32f517f5d6efb9fb7178fd9a9614fbf64aff963e.tar.bz2
helper/jim-nvp: avoid camelcase error by deprecated API
Commit b8e18d292eb6 ("helper/jim-nvp: comply with coding style [1/2]") tags as deprecated the old CamelCase API of jim-nvp, so that old patches already in gerrit or in user's local git can still build while dumping a deprecated message. So far, we have not found any such case, so the deprecated API can be safely dropped in preparation of v0.12.0-rc1. Drop the compile flag "-Wno-error=deprecated-declarations" and the deprecated API. Change-Id: I52ce47eda69a51c2dd29aac15f16e285492d89b4 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7052 Tested-by: jenkins
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac1
1 files changed, 0 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9959777..7d0cc24 100644
--- a/configure.ac
+++ b/configure.ac
@@ -806,7 +806,6 @@ AS_IF([test "x${gcc_wextra}" = "xyes"], [
GCC_WARNINGS="${GCC_WARNINGS} -Wredundant-decls"
GCC_WARNINGS="${GCC_WARNINGS} -Wpointer-arith"
GCC_WARNINGS="${GCC_WARNINGS} -Wundef"
- GCC_WARNINGS="${GCC_WARNINGS} -Wno-error=deprecated-declarations"
])
AS_IF([test "x${gcc_werror}" = "xyes"], [
GCC_WARNINGS="${GCC_WARNINGS} -Werror"