Attention is currently required from: fixeria.
pespin has posted comments on this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/28546 )
Change subject: trxcon: use 'l1sched_' prefix for scheduler API
......................................................................
Patch Set 3: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/28546
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I370aa5084a4e3eb94168b96df94dbbee606adaab
Gerrit-Change-Number: 28546
Gerrit-PatchSet: 3
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Comment-Date: Mon, 11 Jul 2022 09:34:25 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-trx/+/28556 )
Change subject: configure.ac: enable-werror: add -Wno-error=psabi
......................................................................
configure.ac: enable-werror: add -Wno-error=psabi
Don't fail ARM builds because of the GCC7 note about ABI change for
fixing a bug introduced in GCC5 for C++ code.
Fix for:
note: parameter passing for argument of type ... changed in GCC 7.1
Related: https://gcc.gnu.org/gcc-7/changes.html
Change-Id: I4497ba8f71215284df33c48c18864e1058520723
---
M configure.ac
1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/56/28556/1
diff --git a/configure.ac b/configure.ac
index 37444a5..3975d7e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -113,6 +113,8 @@
WERROR_FLAGS="-Werror"
WERROR_FLAGS+=" -Wno-error=deprecated -Wno-error=deprecated-declarations"
WERROR_FLAGS+=" -Wno-error=cpp" # "#warning"
+ # GCC7 ABI change note for ARM: https://gcc.gnu.org/gcc-7/changes.html
+ WERROR_FLAGS+=" -Wno-error=psabi"
CFLAGS="$CFLAGS $WERROR_FLAGS"
CPPFLAGS="$CPPFLAGS $WERROR_FLAGS"
fi
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/28556
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: I4497ba8f71215284df33c48c18864e1058520723
Gerrit-Change-Number: 28556
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith(a)sysmocom.de>
Gerrit-MessageType: newchange