[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH] libcacard: actually use the symbols file
From: |
Michael Tokarev |
Subject: |
[Qemu-devel] [PATCH] libcacard: actually use the symbols file |
Date: |
Mon, 21 Apr 2014 13:01:18 +0400 |
libtool has an argument for .syms file, which is -export-symbols.
There's no argument `-export-syms', and it looks like at least on
linux, -export-syms is just ignored. Use the correct argument,
-export-symbols, to actually get the right export list.
Signed-off-by: Michael Tokarev <address@hidden>
---
libcacard/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libcacard/Makefile b/libcacard/Makefile
index 6b06448..ca08991 100644
--- a/libcacard/Makefile
+++ b/libcacard/Makefile
@@ -24,7 +24,7 @@ vscclient$(EXESUF): libcacard/vscclient.o libcacard.la
# Rules for building libcacard standalone library
libcacard.la: LDFLAGS += -rpath $(libdir) -no-undefined \
- -export-syms $(SRC_PATH)/libcacard/libcacard.syms
+ -export-symbols $(SRC_PATH)/libcacard/libcacard.syms
libcacard.la: LIBS = $(libcacard_libs)
libcacard.la: $(libcacard-lobj-y)
$(call LINK,$^)
--
1.7.10.4
- [Qemu-devel] [PATCH] libcacard: actually use the symbols file,
Michael Tokarev <=
- Re: [Qemu-devel] [PATCH] libcacard: actually use the symbols file, Michael Tokarev, 2014/04/21
- Re: [Qemu-devel] [PATCH] libcacard: actually use the symbols file, Alon Levy, 2014/04/27
- Re: [Qemu-devel] [PATCH] libcacard: actually use the symbols file, Michael Tokarev, 2014/04/27
- Re: [Qemu-devel] [PATCH] libcacard: actually use the symbols file, Paolo Bonzini, 2014/04/27
- Re: [Qemu-devel] [PATCH] libcacard: actually use the symbols file, Michael Tokarev, 2014/04/27
- Re: [Qemu-devel] [PATCH] libcacard: actually use the symbols file, Paolo Bonzini, 2014/04/27
- Re: [Qemu-devel] [PATCH] libcacard: actually use the symbols file, Michael Tokarev, 2014/04/27
- Re: [Qemu-devel] [PATCH] libcacard: actually use the symbols file, Paolo Bonzini, 2014/04/27
- Re: [Qemu-devel] [PATCH] libcacard: actually use the symbols file, Michael Tokarev, 2014/04/27