Kaydet (Commit) 2246f39c authored tarafından Stefan Krah's avatar Stefan Krah

Issue #20767: Fix -R option for FreeBSD/clang.

üst 75d7b615
...@@ -230,6 +230,8 @@ class UnixCCompiler(CCompiler): ...@@ -230,6 +230,8 @@ class UnixCCompiler(CCompiler):
if sys.platform[:6] == "darwin": if sys.platform[:6] == "darwin":
# MacOSX's linker doesn't understand the -R flag at all # MacOSX's linker doesn't understand the -R flag at all
return "-L" + dir return "-L" + dir
elif sys.platform[:7] == "freebsd":
return "-Wl,-rpath=" + dir
elif sys.platform[:5] == "hp-ux": elif sys.platform[:5] == "hp-ux":
if self._is_gcc(compiler): if self._is_gcc(compiler):
return ["-Wl,+s", "-L" + dir] return ["-Wl,+s", "-L" + dir]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment