From c3052243e0aa7e756645a116fef7ed9ff09bfd5e Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 4 Sep 2017 16:36:05 -0700 Subject: remove IRIX support (closes bpo-31341) (#3310) See PEP 11. --- unixccompiler.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'unixccompiler.py') diff --git a/unixccompiler.py b/unixccompiler.py index 3f321c28..ab4d4de1 100644 --- a/unixccompiler.py +++ b/unixccompiler.py @@ -233,8 +233,6 @@ class UnixCCompiler(CCompiler): if self._is_gcc(compiler): return ["-Wl,+s", "-L" + dir] return ["+s", "-L" + dir] - elif sys.platform[:7] == "irix646" or sys.platform[:6] == "osf1V5": - return ["-rpath", dir] else: if self._is_gcc(compiler): # gcc on non-GNU systems does not need -Wl, but can -- cgit v1.2.1