@@ -1,11 +1,5 @@
COMPATNUM=@LIBTOOL_VERSION_INFO@
-if VERSIONED_SYMBOLS
-VSYMS = -Wl,--version-script=../Versions
-else
-VSYMS =
-endif
-
if SYMBOLIC_FUNCTIONS
SYMFUNCS = -Wl,-Bsymbolic-functions
else
@@ -15,7 +9,7 @@ endif
lib_LTLIBRARIES = libatopology.la
libatopology_la_LIBADD = ../libasound.la
-libatopology_la_LDFLAGS = -version-info $(COMPATNUM) $(VSYMS) $(SYMFUNCS) $(LDFLAGS_NOUNDEFINED)
+libatopology_la_LDFLAGS = -version-info $(COMPATNUM) $(SYMFUNCS) $(LDFLAGS_NOUNDEFINED)
libatopology_la_SOURCES =\
parser.c \
Review of Versions.in does not list any symbols defined in the libatopology library. Naming undefined symbols in a version script causes build failures with ld.lld when using default flags. Signed-off-by: Nicholas Vinson <nvinson234@gmail.com> --- src/topology/Makefile.am | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-)