mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Document configuration flags to compile for large file support on
certain Linux systems.
This commit is contained in:
parent
4f53da07bf
commit
f89ad5ed6b
1 changed files with 9 additions and 1 deletions
|
@ -56,9 +56,17 @@ of Irix, but with Solaris 2.6 and 2.7 you need to do something like:
|
||||||
|
|
||||||
\begin{verbatim}
|
\begin{verbatim}
|
||||||
CFLAGS="`getconf LFS_CFLAGS`" OPT="-g -O2 $CFLAGS" \
|
CFLAGS="`getconf LFS_CFLAGS`" OPT="-g -O2 $CFLAGS" \
|
||||||
configure
|
./configure
|
||||||
\end{verbatim} % $ <-- bow to font-lock
|
\end{verbatim} % $ <-- bow to font-lock
|
||||||
|
|
||||||
|
On large-file-capable Linux systems, this might work:
|
||||||
|
|
||||||
|
\begin{verbatim}
|
||||||
|
CC="-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
|
||||||
|
export CC
|
||||||
|
./configure
|
||||||
|
\end{verbatim}
|
||||||
|
|
||||||
|
|
||||||
\subsection{Module Contents \label{posix-contents}}
|
\subsection{Module Contents \label{posix-contents}}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue