projects
/
sx
/
simavr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
regExp
home
|
summary
|
tags
|
heads
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
raw
|
patch
| inline |
side by side
(parent:
d521cd8
)
Commit
1be487742be6b9f811f032611ddde54a5de53883
v1.2
author
Jakob Gruber
<jakob.gruber@gmail.com>
Tue, 20 May 2014 08:38:04 +0000
(10:38 +0200)
committer
Jakob 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
patch
|
blob
|
history
|
download
diff --git
a/simavr/Makefile
b/simavr/Makefile
index aebc070dde51c8c5cdb4e9d41379f9a0e66aeac7..30084c78e0cc015082a79c12f7c4840ef8e7e4e1 100644
(file)
--- a/
simavr/Makefile
+++ b/
simavr/Makefile
@@
-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