mirror of
https://github.com/Zygo/bees.git
synced 2025-05-17 21:35:45 +02:00
Installation: Fix soname QA warning in Gentoo
Gentoo warns about libs missing a proper soname during QA phase. Let's fix this. Signed-off-by: Kai Krakow <kai@kaishome.de>
This commit is contained in:
parent
3391593cb9
commit
3a24cd3010
@ -33,4 +33,4 @@ depends.mk: *.cc
|
||||
$(CXX) $(CXXFLAGS) -o $@ -c $<
|
||||
|
||||
libcrucible.so: $(OBJS) Makefile
|
||||
$(CXX) $(LDFLAGS) -o $@ $(OBJS) -shared -luuid
|
||||
$(CXX) $(LDFLAGS) -o $@ $(OBJS) -shared -Wl,-soname,$@ -luuid
|
||||
|
@ -8,7 +8,7 @@ all: $(PROGRAMS) depends.mk
|
||||
include ../makeflags
|
||||
|
||||
LIBS = -lcrucible -lpthread
|
||||
LDFLAGS = -L../lib -Wl,-rpath=$(shell realpath ../lib)
|
||||
LDFLAGS = -L../lib
|
||||
|
||||
depends.mk: Makefile *.cc
|
||||
for x in *.cc; do $(CXX) $(CXXFLAGS) -M "$$x"; done > depends.mk.new
|
||||
|
Loading…
x
Reference in New Issue
Block a user