diff options
| author | Eli Zaretskii | 2001-09-26 19:04:28 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-09-26 19:04:28 +0000 |
| commit | 8481e41e5ba38d2eaf1d6bb2f502751496453f61 (patch) | |
| tree | 989cf87cbe1cd9c9f3c6354ea2d6fabfa31e2a6f | |
| parent | e29b94bedfb18bbe7780e1d7e1289db92cf9edbb (diff) | |
| download | emacs-8481e41e5ba38d2eaf1d6bb2f502751496453f61.tar.gz emacs-8481e41e5ba38d2eaf1d6bb2f502751496453f61.zip | |
Update as per suggestions by Shayne Steele <steele@cs.fsu.edu>.
| -rw-r--r-- | nt/INSTALL | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/nt/INSTALL b/nt/INSTALL index ae1dbf503f7..cd12f0aca1e 100644 --- a/nt/INSTALL +++ b/nt/INSTALL | |||
| @@ -15,7 +15,8 @@ | |||
| 15 | later and nmake, or a Windows port of GCC 2.95 or later with Mingw | 15 | later and nmake, or a Windows port of GCC 2.95 or later with Mingw |
| 16 | and W32 API support and a port of GNU make. You can use the Cygwin | 16 | and W32 API support and a port of GNU make. You can use the Cygwin |
| 17 | ports of GCC, but Emacs requires the Mingw headers and libraries to | 17 | ports of GCC, but Emacs requires the Mingw headers and libraries to |
| 18 | build. | 18 | build (latest versions of the Cygwin toolkit, at least since v1.3.3, |
| 19 | include the MinGW headers and libraries as an integral part). | ||
| 19 | 20 | ||
| 20 | If you build Emacs on Windows 9X or ME, not on Windows 2000 or | 21 | If you build Emacs on Windows 9X or ME, not on Windows 2000 or |
| 21 | Windows NT, we suggest to install the Cygwin port of Bash. | 22 | Windows NT, we suggest to install the Cygwin port of Bash. |
| @@ -34,8 +35,8 @@ | |||
| 34 | MSVC compiled gmake 3.79.1: okay okay | 35 | MSVC compiled gmake 3.79.1: okay okay |
| 35 | mingw32/gcc-2.92.2 make (3.77): okay okay[4] | 36 | mingw32/gcc-2.92.2 make (3.77): okay okay[4] |
| 36 | cygwin compiled gmake 3.77: okay[1] fails[2] | 37 | cygwin compiled gmake 3.77: okay[1] fails[2] |
| 37 | cygwin compiled gmake 3.78.1: okay fails[2] | 38 | cygwin compiled make 3.78.1: okay fails[2] |
| 38 | cygwin compiled gmake 3.79.1: couldn't build make[3] | 39 | cygwin compiled make 3.79.1: couldn't build make[3] |
| 39 | 40 | ||
| 40 | Notes: | 41 | Notes: |
| 41 | 42 | ||
| @@ -119,12 +120,15 @@ | |||
| 119 | build without sh.exe. (Some versions of Windows shells are too dumb | 120 | build without sh.exe. (Some versions of Windows shells are too dumb |
| 120 | for Makefile's used by Emacs.) | 121 | for Makefile's used by Emacs.) |
| 121 | 122 | ||
| 122 | If you are using a recent Cygwin build of GCC, such as Cygwin version | 123 | If you are using certain Cygwin builds of GCC, such as Cygwin version |
| 123 | 1.1.8, you may need to specify some extra compiler flags like so: | 124 | 1.1.8, you may need to specify some extra compiler flags like so: |
| 124 | 125 | ||
| 125 | configure --with-gcc --cflags -mwin32 --cflags -D__MSVCRT__ | 126 | configure --with-gcc --cflags -mwin32 --cflags -D__MSVCRT__ |
| 126 | --ldflags -mwin32 | 127 | --ldflags -mwin32 |
| 127 | 128 | ||
| 129 | However, the latest Cygwin versions, such as 1.3.3, don't need those | ||
| 130 | switches; you can simply use "configure --with-gcc". | ||
| 131 | |||
| 128 | We will attempt to auto-detect the need for these flags in a future | 132 | We will attempt to auto-detect the need for these flags in a future |
| 129 | release. | 133 | release. |
| 130 | 134 | ||