Commit 1be487742be6b9f811f032611ddde54a5de53883 v1.2
authorJakob Gruber <jakob.gruber@gmail.com>
Tue, 20 May 2014 08:38:04 +0000 (10:38 +0200)
committerJakob Gruber <jakob.gruber@gmail.com>
Tue, 20 May 2014 08:38:04 +0000 (10:38 +0200)
The build (sometimes) fails if libsimavr.so.1 is not linked with
libelf (see https://bugs.archlinux.org/task/40309).

simavr/Makefile

index aebc070dde51c8c5cdb4e9d41379f9a0e66aeac7..30084c78e0cc015082a79c12f7c4840ef8e7e4e1 100644 (file)
@@ -63,10 +63,10 @@ endif
 #
 ${OBJ}/libsimavr.so.1  :       ${sim_o}
 ifeq ($(V),1)
-       $(CC) -shared -Wl,-soname,libsimavr.so.1 -o $@ $^
+       $(CC) -shared -Wl,-soname,libsimavr.so.1 -o $@ $^ $(LDFLAGS)
 else
        @echo SHARED $@
-       @$(CC) -shared -Wl,-soname,libsimavr.so.1 -o $@ $^
+       @$(CC) -shared -Wl,-soname,libsimavr.so.1 -o $@ $^ $(LDFLAGS)
 endif
 
 ${OBJ}/libsimavr.so            : ${OBJ}/libsimavr.so.1