Attention is currently required from: neels.
fixeria has posted comments on this change. ( https://gerrit.osmocom.org/c/libosmo-pfcp/+/31762 )
Change subject: libosmo-gtlv/Makefile.am: drop unused AM_LDFLAGS
......................................................................
Patch Set 1: Code-Review-1
(1 comment)
File src/libosmo-gtlv/Makefile.am:
https://gerrit.osmocom.org/c/libosmo-pfcp/+/31762/comment/4968b305_2fc2b87e
PS1, Line 14: LIBOSMOCORE_LIBS
I think you still want `libosmo-gtlv.la` to depend on libosmocore, right?
If so, you should move `$(LIBOSMOCORE_LIBS)` to `libosmo_gtlv_la_LIBADD` (not `LDFLAGS`!).
--
To view, visit https://gerrit.osmocom.org/c/libosmo-pfcp/+/31762
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: libosmo-pfcp
Gerrit-Branch: master
Gerrit-Change-Id: I6fd777bed9366c35f5b1453cde1e6f5c1617e338
Gerrit-Change-Number: 31762
Gerrit-PatchSet: 1
Gerrit-Owner: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: neels <nhofmeyr(a)sysmocom.de>
Gerrit-Comment-Date: Fri, 10 Mar 2023 22:45:59 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-trx/+/31842 )
Change subject: tests: use -no-install libtool flag to avoid ./lt-* scripts
......................................................................
tests: use -no-install libtool flag to avoid ./lt-* scripts
This option should be used for any executables which are used only
for testing, or for generating other files and are consequently never
installed. By specifying this option, we are telling Libtool that
the executable it links will only ever be executed from where it is
built in the build tree. Libtool is usually able to considerably
speed up the link process for such executables.
Change-Id: Ieb4ddc5799819c24ed357218c7b0197bcb6b5c91
---
M tests/CommonLibs/Makefile.am
M tests/Transceiver52M/Makefile.am
2 files changed, 19 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/42/31842/1
diff --git a/tests/CommonLibs/Makefile.am b/tests/CommonLibs/Makefile.am
index 1a5b922..cfdbc58 100644
--- a/tests/CommonLibs/Makefile.am
+++ b/tests/CommonLibs/Makefile.am
@@ -12,6 +12,8 @@
$(LIBOSMOVTY_CFLAGS) \
$(NULL)
+AM_LDFLAGS = -no-install
+
LDADD = \
$(COMMON_LA) \
$(LIBOSMOCORE_LIBS) \
diff --git a/tests/Transceiver52M/Makefile.am b/tests/Transceiver52M/Makefile.am
index 2077c95..a5b91f6 100644
--- a/tests/Transceiver52M/Makefile.am
+++ b/tests/Transceiver52M/Makefile.am
@@ -7,6 +7,7 @@
$(NULL)
AM_CFLAGS = -Wall -g
+AM_LDFLAGS = -no-install
EXTRA_DIST = convolve_test.ok convolve_test_golden.h
--
To view, visit https://gerrit.osmocom.org/c/osmo-trx/+/31842
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Change-Id: Ieb4ddc5799819c24ed357218c7b0197bcb6b5c91
Gerrit-Change-Number: 31842
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange
fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-msc/+/31837 )
Change subject: tests: use -no-install libtool flag to avoid ./lt-* scripts
......................................................................
tests: use -no-install libtool flag to avoid ./lt-* scripts
This option should be used for any executables which are used only
for testing, or for generating other files and are consequently never
installed. By specifying this option, we are telling Libtool that
the executable it links will only ever be executed from where it is
built in the build tree. Libtool is usually able to considerably
speed up the link process for such executables.
Also take a chance to add the missing $(COVERAGE_LDFLAGS).
Change-Id: I664a9d5abed2777deee302f9d3afd1bbfde7a844
---
M tests/db_sms/Makefile.am
M tests/mncc/Makefile.am
M tests/msc_vlr/Makefile.am
M tests/sdp_msg/Makefile.am
M tests/smpp/Makefile.am
M tests/sms_queue/Makefile.am
6 files changed, 42 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/37/31837/1
diff --git a/tests/db_sms/Makefile.am b/tests/db_sms/Makefile.am
index 946d6a2..9dabfe7 100644
--- a/tests/db_sms/Makefile.am
+++ b/tests/db_sms/Makefile.am
@@ -19,6 +19,11 @@
$(LIBSQLITE3_CFLAGS) \
$(NULL)
+AM_LDFLAGS = \
+ $(COVERAGE_LDFLAGS) \
+ -no-install \
+ $(NULL)
+
EXTRA_DIST = \
db_sms_test.ok \
db_sms_test.err \
diff --git a/tests/mncc/Makefile.am b/tests/mncc/Makefile.am
index b836fe3..a4c2960 100644
--- a/tests/mncc/Makefile.am
+++ b/tests/mncc/Makefile.am
@@ -9,6 +9,11 @@
$(LIBOSMOCORE_CFLAGS) \
$(NULL)
+AM_LDFLAGS = \
+ $(COVERAGE_LDFLAGS) \
+ -no-install \
+ $(NULL)
+
LDADD = \
$(top_builddir)/src/libmsc/libmsc.a \
$(LIBOSMOCORE_LIBS) \
diff --git a/tests/msc_vlr/Makefile.am b/tests/msc_vlr/Makefile.am
index 2ba7180..cbdd6a4 100644
--- a/tests/msc_vlr/Makefile.am
+++ b/tests/msc_vlr/Makefile.am
@@ -26,6 +26,8 @@
-Wl,--wrap=osmo_get_rand_id \
-Wl,--wrap=ran_peers_down_paging \
-Wl,--wrap=call_leg_ensure_ci \
+ $(COVERAGE_LDFLAGS) \
+ -no-install \
$(NULL)
LDADD = \
diff --git a/tests/sdp_msg/Makefile.am b/tests/sdp_msg/Makefile.am
index a2e5fbc..f86e5f7 100644
--- a/tests/sdp_msg/Makefile.am
+++ b/tests/sdp_msg/Makefile.am
@@ -9,6 +9,11 @@
$(LIBOSMOCORE_CFLAGS) \
$(NULL)
+AM_LDFLAGS = \
+ $(COVERAGE_LDFLAGS) \
+ -no-install \
+ $(NULL)
+
LDADD = \
$(top_builddir)/src/libmsc/libmsc.a \
$(LIBOSMOCORE_LIBS) \
diff --git a/tests/smpp/Makefile.am b/tests/smpp/Makefile.am
index fabfd2d..ff19d3d 100644
--- a/tests/smpp/Makefile.am
+++ b/tests/smpp/Makefile.am
@@ -19,6 +19,7 @@
AM_LDFLAGS = \
$(COVERAGE_LDFLAGS) \
+ -no-install \
$(NULL)
EXTRA_DIST = \
diff --git a/tests/sms_queue/Makefile.am b/tests/sms_queue/Makefile.am
index d50a8d6..055a229 100644
--- a/tests/sms_queue/Makefile.am
+++ b/tests/sms_queue/Makefile.am
@@ -19,6 +19,11 @@
$(LIBSQLITE3_CFLAGS) \
$(NULL)
+AM_LDFLAGS = \
+ $(COVERAGE_LDFLAGS) \
+ -no-install \
+ $(NULL)
+
EXTRA_DIST = \
sms_queue_test.ok \
sms_queue_test.err \
@@ -51,4 +56,5 @@
sms_queue_test_LDFLAGS = \
-Wl,--wrap=db_sms_get_next_unsent_rr_msisdn \
+ $(AM_LDFLAGS) \
$(NULL)
--
To view, visit https://gerrit.osmocom.org/c/osmo-msc/+/31837
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-Change-Id: I664a9d5abed2777deee302f9d3afd1bbfde7a844
Gerrit-Change-Number: 31837
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange
Attention is currently required from: fixeria.
Hello Jenkins Builder, pespin,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/osmo-mgw/+/31786
to look at the new patch set (#3).
Change subject: */Makefile.am: libraries shall not be in AM_LDFLAGS
......................................................................
*/Makefile.am: libraries shall not be in AM_LDFLAGS
Change-Id: Ie9df855ee09b0761bd617fab58ca26450ac0c754
---
M src/Makefile.am
M src/libosmo-mgcp-client/Makefile.am
M src/libosmo-mgcp/Makefile.am
3 files changed, 14 insertions(+), 14 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-mgw refs/changes/86/31786/3
--
To view, visit https://gerrit.osmocom.org/c/osmo-mgw/+/31786
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-mgw
Gerrit-Branch: master
Gerrit-Change-Id: Ie9df855ee09b0761bd617fab58ca26450ac0c754
Gerrit-Change-Number: 31786
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-MessageType: newpatchset
fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-mgw/+/31836 )
Change subject: tests: use -no-install libtool flag to avoid ./lt-* scripts
......................................................................
tests: use -no-install libtool flag to avoid ./lt-* scripts
This option should be used for any executables which are used only
for testing, or for generating other files and are consequently never
installed. By specifying this option, we are telling Libtool that
the executable it links will only ever be executed from where it is
built in the build tree. Libtool is usually able to considerably
speed up the link process for such executables.
Change-Id: I4bc03bdc1f2de2574558e2ad753e116486993a7f
---
M tests/mgcp/Makefile.am
M tests/mgcp_client/Makefile.am
2 files changed, 18 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-mgw refs/changes/36/31836/1
diff --git a/tests/mgcp/Makefile.am b/tests/mgcp/Makefile.am
index af6201a..73ad1cf 100644
--- a/tests/mgcp/Makefile.am
+++ b/tests/mgcp/Makefile.am
@@ -18,6 +18,7 @@
AM_LDFLAGS = \
$(COVERAGE_LDFLAGS) \
+ -no-install \
$(NULL)
EXTRA_DIST = \
diff --git a/tests/mgcp_client/Makefile.am b/tests/mgcp_client/Makefile.am
index 3895d02..f6f1838 100644
--- a/tests/mgcp_client/Makefile.am
+++ b/tests/mgcp_client/Makefile.am
@@ -15,6 +15,7 @@
AM_LDFLAGS = \
$(COVERAGE_LDFLAGS) \
+ -no-install \
$(NULL)
EXTRA_DIST = \
--
To view, visit https://gerrit.osmocom.org/c/osmo-mgw/+/31836
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-mgw
Gerrit-Branch: master
Gerrit-Change-Id: I4bc03bdc1f2de2574558e2ad753e116486993a7f
Gerrit-Change-Number: 31836
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-MessageType: newchange