summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-10-29 14:16:23 (GMT)
committerGitHub <noreply@github.com>2020-10-29 14:16:23 (GMT)
commit5776663675b48f011d428a5874cc3c79d1deb59e (patch)
tree13df320ed9473e63a92b8eed64a4d67c58f7d089 /Doc
parent350526105fa9b131d8b941ae753378b741dabb2f (diff)
downloadcpython-5776663675b48f011d428a5874cc3c79d1deb59e.zip
cpython-5776663675b48f011d428a5874cc3c79d1deb59e.tar.gz
cpython-5776663675b48f011d428a5874cc3c79d1deb59e.tar.bz2
bpo-42029: Remove IRIX code (GH-23023)
IRIX code was slowy removed in Python 2.4 (--with-sgi-dl), Python 3.3 (Irix threads), and Python 3.7.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/posix.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/posix.rst b/Doc/library/posix.rst
index 2105af9..ad417a1 100644
--- a/Doc/library/posix.rst
+++ b/Doc/library/posix.rst
@@ -37,7 +37,7 @@ Large File Support
.. sectionauthor:: Steve Clift <clift@mail.anacapa.net>
-Several operating systems (including AIX, HP-UX, Irix and Solaris) provide
+Several operating systems (including AIX, HP-UX and Solaris) provide
support for files that are larger than 2 GiB from a C programming model where
:c:type:`int` and :c:type:`long` are 32-bit values. This is typically accomplished
by defining the relevant size and offset types as 64-bit values. Such files are
@@ -47,8 +47,8 @@ Large file support is enabled in Python when the size of an :c:type:`off_t` is
larger than a :c:type:`long` and the :c:type:`long long` is at least as large
as an :c:type:`off_t`.
It may be necessary to configure and compile Python with certain compiler flags
-to enable this mode. For example, it is enabled by default with recent versions
-of Irix, but with Solaris 2.6 and 2.7 you need to do something like::
+to enable this mode. For example, with Solaris 2.6 and 2.7 you need to do
+something like::
CFLAGS="`getconf LFS_CFLAGS`" OPT="-g -O2 $CFLAGS" \
./configure