1
0
forked from Mirror/wren

Provide actual soname when building shared lib on Linux.

Fix #572.
This commit is contained in:
Bob Nystrom
2018-07-13 07:19:06 -07:00
parent 646fedab98
commit 1f93e16fb2

View File

@ -107,7 +107,7 @@ endif
ifneq (,$(findstring darwin,$(OS)))
SHARED_EXT := dylib
else
SHARED_LIB_FLAGS := -Wl,-soname,$@.so
SHARED_LIB_FLAGS := -Wl,-soname,libwren.so
SHARED_EXT := so
# Link in the right libraries needed by libuv on Windows and Linux.