mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 12:08:13 +00:00
link shared library with option -Bsymbolic-functions. proposed by @egberts. this fixes issue #187
This commit is contained in:
parent
f935469658
commit
10228dcb12
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -119,7 +119,7 @@ else
|
|||
EXT = so
|
||||
VERSION_EXT = $(EXT).$(API_MAJOR)
|
||||
AR_EXT = a
|
||||
$(LIBNAME)_LDFLAGS += -Wl,-soname,lib$(LIBNAME).$(VERSION_EXT)
|
||||
$(LIBNAME)_LDFLAGS += -Wl,-Bsymbolic-functions,-soname,lib$(LIBNAME).$(VERSION_EXT)
|
||||
UNICORN_CFLAGS += -fvisibility=hidden
|
||||
endif
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue