diff mbox series

[v3,4/13] build: drop -Wno-deprecated-declaration

Message ID 1504641607-4966-5-git-send-email-odpbot@yandex.ru
State Superseded
Headers show
Series [v3,1/13] travis: drop ubuntu-toolchain-r-test PPA | expand

Commit Message

Github ODP bot Sept. 5, 2017, 7:59 p.m. UTC
From: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>


We do not use deprecated attribute anymore, thus let's drop the
-Wno-deprecated-declaration flag from compiler options.

Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>

---
/** Email created from pull request 165 (lumag:improve-build-3)
 ** https://github.com/Linaro/odp/pull/165
 ** Patch: https://github.com/Linaro/odp/pull/165.patch
 ** Base sha: 42184679185ce0c979e065349360167e3fce6ca0
 ** Merge commit sha: 38d800e8e4b3c89a118426f28490b2e87091e127
 **/
 platform/Makefile.inc                       | 3 ---
 test/common_plat/validation/api/Makefile.am | 3 ---
 2 files changed, 6 deletions(-)
diff mbox series

Patch

diff --git a/platform/Makefile.inc b/platform/Makefile.inc
index 738f0f9a..a88e8384 100644
--- a/platform/Makefile.inc
+++ b/platform/Makefile.inc
@@ -13,9 +13,6 @@  AM_LDFLAGS += -version-number '$(ODP_LIBSO_VERSION)'
 AM_CFLAGS += "-DGIT_HASH=$(VERSION)"
 AM_CFLAGS += $(VISIBILITY_CFLAGS)
 
-#The implementation will need to retain the deprecated implementation
-AM_CFLAGS += -Wno-deprecated-declarations
-
 AM_CFLAGS += @PTHREAD_CFLAGS@
 
 odpapispecincludedir= $(includedir)/odp/api/spec
diff --git a/test/common_plat/validation/api/Makefile.am b/test/common_plat/validation/api/Makefile.am
index e2d30a67..601bae6d 100644
--- a/test/common_plat/validation/api/Makefile.am
+++ b/test/common_plat/validation/api/Makefile.am
@@ -23,6 +23,3 @@  ODP_MODULES = atomic \
 	      system
 
 SUBDIRS = $(ODP_MODULES)
-
-#The tests will need to retain the deprecated test implementation
-AM_CFLAGS += -Wno-deprecated-declarations