diff options
| author | Benjamin Peterson <benjamin@python.org> | 2017-09-04 16:36:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-04 16:36:05 -0700 |
| commit | c3052243e0aa7e756645a116fef7ed9ff09bfd5e (patch) | |
| tree | e983ee6d782e72ab99df524e696c332b922d376a /unixccompiler.py | |
| parent | 252748ea7dc284747562b5de212aba51d79a2479 (diff) | |
| download | python-setuptools-git-c3052243e0aa7e756645a116fef7ed9ff09bfd5e.tar.gz | |
remove IRIX support (closes bpo-31341) (#3310)
See PEP 11.
Diffstat (limited to 'unixccompiler.py')
| -rw-r--r-- | unixccompiler.py | 2 |
1 files changed, 0 insertions, 2 deletions
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 |
