diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-16 10:23:14 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-16 10:23:14 (GMT) |
commit | d97147c2533ecc33102bb142a541dfe148ae7224 (patch) | |
tree | 309a65fb563311f443c3ad53446129687e560148 /compat/zlib/win32/USAGE.txt | |
parent | 5aa91d462f499acb220fa05f682126b95bccde24 (diff) | |
download | tcl-d97147c2533ecc33102bb142a541dfe148ae7224.zip tcl-d97147c2533ecc33102bb142a541dfe148ae7224.tar.gz tcl-d97147c2533ecc33102bb142a541dfe148ae7224.tar.bz2 |
Update zlib to version 1.2.11
Diffstat (limited to 'compat/zlib/win32/USAGE.txt')
-rw-r--r-- | compat/zlib/win32/USAGE.txt | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/compat/zlib/win32/USAGE.txt b/compat/zlib/win32/USAGE.txt index 48e594e..22829eb 100644 --- a/compat/zlib/win32/USAGE.txt +++ b/compat/zlib/win32/USAGE.txt @@ -2,6 +2,9 @@ Installing ZLIB1.DLL
====================
Copy ZLIB1.DLL to the SYSTEM or the SYSTEM32 directory.
+
+ If you want to install the 32-bit dll on a 64-bit
+ machine, use the SysWOW64 directory instead.
Using ZLIB1.DLL with Microsoft Visual C++
@@ -20,12 +23,17 @@ Using ZLIB1.DLL with gcc/MinGW 1. Install the supplied header files "zlib.h" and "zconf.h"
into the INCLUDE directory.
- 2. Copy the supplied library file "zdll.lib" to "libzdll.a":
+ 2. (32-bit): Copy the supplied library file "zdll.lib" to "libzdll.a":
cp lib/zdll.lib lib/libzdll.a
OR
- 2' Build the import library from the supplied "zlib.def":
+ 2'. (64-bit): Copy the supplied library file "libz.dll.a" to "libzdll.a":
+ cp lib/libz.dll.a lib/libzdll.a
+
+ OR
+
+ 2'' Build the import library from the supplied "zlib.def":
dlltool -D zlib1.dll -d lib/zlib.def -l lib/libzdll.a
3. Install "libzdll.a" into the LIB directory.
|