emulators/dolphin-emu: set LLD_UNSAFE

Prevent Dolphin from linking using lld as it fails with errors like:

/usr/bin/ld: error: cannot preempt symbol: alcOpenDevice
>>> defined in /usr/local/lib/libopenal.so
>>> referenced by OpenALStream.cpp
>>>               OpenALStream.cpp.o:(OpenALStream::Start())

due to preemption of symbols with protected visibility in a shared object.

See also PR #219089 for more details.

PR:		226980
Submitted by:	emaste
This commit is contained in:
Ganael LAPLANCHE 2018-03-31 16:23:13 +00:00
parent 0e40090053
commit f5faf54441
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=466062

View File

@ -31,6 +31,7 @@ LIB_DEPENDS= libpulse.so:audio/pulseaudio \
libcurl.so:ftp/curl \
libgtest.so:devel/googletest
LLD_UNSAFE= yes
USES= cmake compiler:c++11-lib iconv openal pkgconfig
USE_GITHUB= yes