Open Design and Integration Environment

MinGW/MSYS
Login
Bounty program for improvements to Tcl and certain Tcl packages.
Tcl 2018 Conference, Houston/TX, US, Oct 15-19
Send your abstracts to tclconference@googlegroups.com or submit via the online form
by Aug 20.

Install msys from http://sourceforge.net/projects/mingwbuilds/files/external-binary-packages/

Note this is only msys, not msys+mingw since we are not using gcc Uncompress into (e.g.) c:msys

Notes:

Use "Developer Command Prompt" from MSVC, not msys sh. For ./configure to run, you need to add c:MinGWMSYS1.0bin to your path:


set PATH=%PATH%;C:\\MinGW\\MSYS\\1.0\\bin
set CC=cl.exe
cd *PATHTOTCLSRC*\\win
sh configure  --prefix=*TCLINSTALLDIR* --enable-threads 
make
make install
cd *PATHTOTKSRC*\\win
sh configure  --prefix=*TCLINSTALLDIR* --enable-threads 
make
make install