Changes between Version 120 and Version 121 of Cygwin64Port
- Timestamp:
- 08/14/19 11:37:33 (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Cygwin64Port
v120 v121 11 11 === Prerequisites === 12 12 13 Download and [https://cygwin.com/install.html install cygwin64] (do not get the 32-bit version; it is not supported by Sage) and install the following packages: `make, m4, flex, git, gcc-core, gcc-g++, gcc-fortran, diffutils, liblapack0, liblapack-devel, zlib-devel, lib readline-devel, libcrypt-devel, openssl-devel, python, wget`.13 Download and [https://cygwin.com/install.html install cygwin64] (do not get the 32-bit version; it is not supported by Sage) and install the following packages: `make, m4, flex, git, gcc-core, gcc-g++, gcc-fortran, diffutils, liblapack0, liblapack-devel, zlib-devel, libiconv-devel, libreadline-devel, libcrypt-devel, openssl-devel, python, wget`. 14 14 15 15 You can install these manually by going through the list in the Cygwin installer, but it is faster and easier to skip this step and just use `apt-cyg` (see below). In order for `apt-cyg` to work you still need, at a minimum, `wget` is installed, along with any default packages. … … 21 21 22 22 Having these package installed can cause some Python extension modules to not build properly (due to a bug in the Python build system, see #22768) since Sage contains its own copies of sqlite3 and libncurses anyways. 23 24 Note that as of #27823, `libiconv-devel` is a required prerequisite for building the `r` package. 23 25 24 26 ==== Using apt-cyg to install dependencies ==== … … 41 43 apt-cyg install make m4 flex git gcc-core gcc-g++ gcc-fortran diffutils \ 42 44 liblapack0 liblapack-devel zlib-devel libreadline-devel \ 43 lib crypt-devel openssl-devel python ccache45 libiconv-devel libcrypt-devel openssl-devel python ccache 44 46 }}} 45 47