From: Stefan Krah Date: Wed, 3 Aug 2016 09:23:31 +0000 (+0200) Subject: Issue #20767: Fix -R option for FreeBSD/clang. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2246f39c4002d1e2398e60a459a0cd320d89f59e;p=python Issue #20767: Fix -R option for FreeBSD/clang. --- diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py index 4c35676130..3af540e581 100644 --- a/Lib/distutils/unixccompiler.py +++ b/Lib/distutils/unixccompiler.py @@ -230,6 +230,8 @@ class UnixCCompiler(CCompiler): if sys.platform[:6] == "darwin": # MacOSX's linker doesn't understand the -R flag at all return "-L" + dir + elif sys.platform[:7] == "freebsd": + return "-Wl,-rpath=" + dir elif sys.platform[:5] == "hp-ux": if self._is_gcc(compiler): return ["-Wl,+s", "-L" + dir]