diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2013-03-03 10:07:16 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2013-03-03 10:10:07 +0100 |
commit | 45cdaa095a0e2fe9558de682e1c12229dfab9adc (patch) | |
tree | 493306deac8b645b8af85fba8d5e099aa9467721 /src/codec | |
parent | ed8170ac676a0a59df39f9c73ec84996fc222145 (diff) |
cygwin: Link many libraries with -no-undefined to create a dll
Only the Gb library relies on having undefined references to a
symbol that needs to be provided by the host application. For
all other libraries we can link with -no-undefined.
Diffstat (limited to 'src/codec')
-rw-r--r-- | src/codec/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codec/Makefile.am b/src/codec/Makefile.am index 6110cbf7..f4dec62b 100644 --- a/src/codec/Makefile.am +++ b/src/codec/Makefile.am @@ -7,4 +7,4 @@ AM_CFLAGS = -Wall $(all_includes) -I$(top_srcdir)/include lib_LTLIBRARIES = libosmocodec.la libosmocodec_la_SOURCES = gsm610.c gsm620.c gsm660.c gsm690.c -libosmocodec_la_LDFLAGS = -version-info $(LIBVERSION) +libosmocodec_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined |