Skip to content

Commit b7209f2

Browse files
committed
vcvars32 -> vsvars32.
Recommend using MFLAGS=-MD everywhere, needed for using intl.dll.
1 parent 22f5a3d commit b7209f2

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

README.woe32

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Installation on Woe32 (WinNT/2000/XP, Win95/98/ME):
1111
can be achieved by running
1212
C:\Program Files\Microsoft Visual Studio\VC98\bin\vcvars32.bat
1313
In a typical MSVC7.0 installation, it can be achieved by running
14-
C:\Program Files\Microsoft Visual Studio .NET\VC7\bin\vcvars32.bat
14+
C:\Program Files\Microsoft Visual Studio .NET\Common7\Tools\vsvars32.bat
1515

1616
Decide which compilation model you will use:
1717
MFLAGS=-ML (the default) Single-threaded, statically linked - libc.lib
@@ -31,9 +31,10 @@ Installation on Woe32 (WinNT/2000/XP, Win95/98/ME):
3131

3232
For static library:
3333

34-
nmake -f Makefile.msvc NO_NLS=1
34+
nmake -f Makefile.msvc NO_NLS=1 MFLAGS=-MD
3535
or
36-
nmake -f Makefile.msvc NO_NLS=1 check [This runs the testsuite.]
36+
nmake -f Makefile.msvc NO_NLS=1 MFLAGS=-MD check
37+
[This runs the testsuite.]
3738

3839
If you want to build both the shared and static library, you have to
3940
unpack the libiconv sources twice in different directories. Don't mix
@@ -44,13 +45,13 @@ Installation on Woe32 (WinNT/2000/XP, Win95/98/ME):
4445

4546
nmake -f Makefile.msvc NO_NLS=1 DLL=1 MFLAGS=-MD install
4647
or
47-
nmake -f Makefile.msvc NO_NLS=1 install
48+
nmake -f Makefile.msvc NO_NLS=1 MFLAGS=-MD install
4849

4950
Remove traces of this preliminary build:
5051

5152
nmake -f Makefile.msvc NO_NLS=1 DLL=1 MFLAGS=-MD distclean
5253
or
53-
nmake -f Makefile.msvc NO_NLS=1 distclean
54+
nmake -f Makefile.msvc NO_NLS=1 MFLAGS=-MD distclean
5455

5556
Step 2: Build and install the GNU gettext package (version 0.12 or newer,
5657
libintl library and various programs) using the same MFLAGS. Then come
@@ -69,9 +70,9 @@ Installation on Woe32 (WinNT/2000/XP, Win95/98/ME):
6970

7071
For static library:
7172

72-
nmake -f Makefile.msvc
73+
nmake -f Makefile.msvc MFLAGS=-MD
7374
or
74-
nmake -f Makefile.msvc check [This runs the testsuite.]
75+
nmake -f Makefile.msvc MFLAGS=-MD check [This runs the testsuite.]
7576

7677
If you want to build both the shared and static library, you have to
7778
unpack the libiconv sources twice in different directories. Don't mix
@@ -82,7 +83,7 @@ Installation on Woe32 (WinNT/2000/XP, Win95/98/ME):
8283

8384
nmake -f Makefile.msvc DLL=1 MFLAGS=-MD install
8485
or
85-
nmake -f Makefile.msvc install
86+
nmake -f Makefile.msvc MFLAGS=-MD install
8687

8788
- Installation:
8889

@@ -98,7 +99,7 @@ Installation on Woe32 (WinNT/2000/XP, Win95/98/ME):
9899

99100
nmake -f Makefile.msvc DLL=1 MFLAGS=-MD install PREFIX=InstallBaseDirectory
100101
or
101-
nmake -f Makefile.msvc install PREFIX=InstallBaseDirectory
102+
nmake -f Makefile.msvc MFLAGS=-MD install PREFIX=InstallBaseDirectory
102103

103104
By default, the compiled package is installed under c:\usr. You can
104105
specify a different directory by giving the installation base directory

0 commit comments

Comments
 (0)