1#
2# This is how I run configure.  You'll want to change the
3# pathnames to match your system, of course.
4#
5# Remember that if you use the --enable-sybols, you need to
6# use the thread25d.dll in a tclsh that has also been compiled
7# with symbols (e.g., tclsh84g.exe or tclsh84d.exe).
8# If you want to build both debug and non-debug versions, then
9# create "debug" and "release" directories and run configure
10# from in those directories with the appropriate flags.
11#
12# Note the CC=gcc must be set *before* the "configure" is ran.
13# This is really needed, otherwise configure will not be able
14# to compile the small test file which checks the presence
15# of the MinGW build environment. It is *not* enough to use
16# "--enable-gcc" configure option; you *need* to define CC.
17# 
18
19export CC=gcc
20sh ../configure --enable-threads --with-tcl=e:/tcl/win
21
22