aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-bsp/libmcc/libmcc/build-with-versioned-soname.patch
blob: d004b78aacb8f244c22857f05f8b95f0208a30dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
libmcc: build with versioned soname

This adds a versioned soname to the shared library during linking.
Otherwise an application linked with '-lmcc' needs libmcc.so for execution,
having libmcc.so.1 would not be enough.

Signed-off-by: Max Krummenacher <max.oss.09@gmail.com>
--- a/Makefile	2015-01-07 17:09:13.657675270 +0100
+++ b/Makefile	2015-01-07 17:21:19.457545709 +0100
@@ -8,7 +8,7 @@
 	$(AR) rcs $@ $<
 
 build/libmcc.so.1.0: build/libmcc.o
-	$(CC) -shared -o $@  $<
+	$(CC) -shared -Wl,-soname,libmcc.so.1 -o $@ $< -lc
 
 install:
 	mkdir -p $(DESTDIR)/usr/include $(DESTDIR)/usr/lib