Don't pass "--no-copy-dt-needed-entries" option to linker on FreeBSD.

Eventually the nested if statements should be replaced by a more general
condition, but this is sufficient to make it work on FreeBSD.
This commit is contained in:
Manuel Jacob 2015-10-02 14:19:00 +02:00
parent cbc177ca01
commit c999ef70e8
1 changed files with 3 additions and 1 deletions

View File

@ -61,7 +61,9 @@ ifeq ($(BUILD_SHARED_LIBS), 1)
endif
ifneq ($(OS), Darwin)
ifneq ($(OS), SunOS)
GLOBAL_LDFLAGS += -Wl,--no-copy-dt-needed-entries
ifneq ($(OS), FreeBSD)
GLOBAL_LDFLAGS += -Wl,--no-copy-dt-needed-entries
endif
endif
endif
SET_RPATH_TO_LIBS ?= 1