pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-trx/+/42254?usp=email )
Change subject: ipc: Makefile.am: Pick already compiled UHDDevice.o object ......................................................................
ipc: Makefile.am: Pick already compiled UHDDevice.o object
Take the chance to reorder LDADD, since it expects dependencies to be in inversed-tree order.
Change-Id: I344309cb7264caf1622b70e87bb44ad3f32edb88 --- M Transceiver52M/device/ipc/Makefile.am 1 file changed, 5 insertions(+), 4 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/54/42254/1
diff --git a/Transceiver52M/device/ipc/Makefile.am b/Transceiver52M/device/ipc/Makefile.am index c08621f..530f346 100644 --- a/Transceiver52M/device/ipc/Makefile.am +++ b/Transceiver52M/device/ipc/Makefile.am @@ -24,11 +24,12 @@
bin_PROGRAMS = ipc-driver-test #ipc_driver_test_SHORTNAME = drvt -ipc_driver_test_SOURCES = ipc-driver-test.c uhdwrap.cpp ../uhd/UHDDevice.cpp +ipc_driver_test_SOURCES = ipc-driver-test.c uhdwrap.cpp ipc_driver_test_LDADD = \ - libdevice.la \ - $(COMMON_LA) \ - $(LIBOSMOCORE_LIBS) \ $(UHD_LIBS) \ + $(LIBOSMOCORE_LIBS) \ + $(COMMON_LA) \ + libdevice.la \ + $(top_builddir)/Transceiver52M/device/uhd/UHDDevice.o \ $(NULL) endif