Skip to content
Snippets Groups Projects
Commit 8ab3cc1b authored by pali.gabor@gmail.com's avatar pali.gabor@gmail.com
Browse files

Set DYNAMIC_GHC_PROGRAMS=NO for FreeBSD because $ORIGIN is not resolved

properly (see #7819)
parent e5944d9f
No related branches found
No related tags found
No related merge requests found
......@@ -134,6 +134,10 @@ DYNAMIC_TOO = YES
ifeq "$(TargetOS_CPP)" "mingw32"
# This doesn't work on Windows yet
DYNAMIC_GHC_PROGRAMS = NO
else ifeq "$(TargetOS_CPP)" "freebsd"
# FreeBSD cannot do proper resolution for $ORIGIN (due to a bug in
# rtld(1)), so disable it by default (see #7819).
DYNAMIC_GHC_PROGRAMS = NO
else
DYNAMIC_GHC_PROGRAMS = YES
endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment