diff mbox series

[v4,4/14] build: drop -Wno-deprecated-declaration

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

Commit Message

Github ODP bot Sept. 7, 2017, 11:59 a.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: 360c1d34b52a2356619b9290811862b9de41de00
 ** Merge commit sha: b3c5b66f989f86f62c8d44471480599b93cac6c0
 **/
 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