From 9de620e970230a7c4fc933fcdfe292260670eb25 Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Wed, 3 Aug 2016 11:18:26 +0200 Subject: Issue #20767: Fix -R option for FreeBSD/clang. --- Lib/distutils/unixccompiler.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py index 92d14df..3f321c2 100644 --- a/Lib/distutils/unixccompiler.py +++ b/Lib/distutils/unixccompiler.py @@ -227,6 +227,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] -- cgit v0.12