mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-02 13:03:33 +00:00
GCC 4.6.0 and LD.BFD 2.21 on ARM somehow fail to resolve the dbi symbols when we have the library in front of the static libraries, move them to the back. Without this patch the tlv_def_patch symbol and the gsm48_construct_ra.
11 lines
382 B
Makefile
11 lines
382 B
Makefile
INCLUDES = $(all_includes) -I$(top_srcdir)/include
|
|
AM_CFLAGS=-Wall -ggdb3 $(LIBOSMOCORE_CFLAGS) $(LIBOSMOGSM_CFLAGS)
|
|
|
|
noinst_PROGRAMS = channel_test
|
|
|
|
channel_test_SOURCES = channel_test.c
|
|
channel_test_LDADD = -ldl $(LIBOSMOCORE_LIBS) \
|
|
$(top_builddir)/src/libcommon/libcommon.a \
|
|
$(top_builddir)/src/libbsc/libbsc.a \
|
|
$(top_builddir)/src/libmsc/libmsc.a -ldbi $(LIBOSMOGSM_LIBS)
|