This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via 96a0e78c553dabb933d9263bbc78ad05731545a3 (commit) via 06db20e7ea4d18bc9b7ae347625bfd284509ed85 (commit) from 6f07a40cc29b4b9ebc69a3badc31de7497ae6253 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 96a0e78c553dabb933d9263bbc78ad05731545a3 Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Thu Feb 8 06:01:52 2018 +0300
build: fix visibility of deprecated symbols
Correct visibility regexp to allow symbols like _deprecated_odp_*.
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/platform/Makefile.inc b/platform/Makefile.inc index a39cf69b..bb23a4cb 100644 --- a/platform/Makefile.inc +++ b/platform/Makefile.inc @@ -9,9 +9,9 @@ lib_LTLIBRARIES = $(LIB)/libodp-linux.la AM_LDFLAGS = -version-number '$(ODP_LIBSO_VERSION)'
if ODP_ABI_COMPAT -AM_LDFLAGS += -export-symbols-regex '^(_deprecated)?odp_' +AM_LDFLAGS += -export-symbols-regex '^(_deprecated_)?odp_' else -AM_LDFLAGS += -export-symbols-regex '^(_deprecated)?_?odp_' +AM_LDFLAGS += -export-symbols-regex '^(_deprecated_)?_?odp_' endif
AM_CFLAGS = "-DGIT_HASH=$(VERSION)"
commit 06db20e7ea4d18bc9b7ae347625bfd284509ed85 Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Thu Feb 8 04:17:51 2018 +0300
configure: enable all Automake warnings and make them errors
Make Automake stop on all warnings it encounters when creating Makefile.in's
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/configure.ac b/configure.ac index 7b90b212..a44a2ec6 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ ODP_VERSION_API_MAJOR=odpapi_major_version AC_SUBST(ODP_VERSION_API_MAJOR) ODP_VERSION_API_MINOR=odpapi_minor_version AC_SUBST(ODP_VERSION_API_MINOR) -AM_INIT_AUTOMAKE([1.9 tar-pax subdir-objects foreign nostdinc]) +AM_INIT_AUTOMAKE([1.9 tar-pax subdir-objects foreign nostdinc -Wall -Werror]) AC_CONFIG_SRCDIR([include/odp/api/spec/init.h]) AM_CONFIG_HEADER([include/config.h])
-----------------------------------------------------------------------
Summary of changes: configure.ac | 2 +- platform/Makefile.inc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive