These are the notes i have made with my first attempt to get Dirac compiled in win2k pro. This covers both the MS VisualC++ and the MinGW paths.
from : http://sourceforge.net/projects/dirac
unpack to c:\dirac\
from : http://msdn.microsoft.com/visualc/vctoolkit2003/
install : double-click
from : http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe
extract (double-click) and dump in c:\winnt or somewhere in $path
open notepad
@echo off if "%1" == "" goto nocmd echo %* > cmdline.tmp link /lib @cmdline.tmp del cmdline.tmp goto end :nocmd link /lib :end
START--> Run : cmd
cd C:\dirac\win
nmake /f Makefile
behold - loads of .obj and .exe files
install : double-click
to default - C:\MinGW\
install : double-click
to default - C:\msys\1.0\
follow the MinGW bit to do the bind for you
from : http://sourceforge.net/projects/dirac
unpack to c:\msys\1.0\dirac\
from : http://msdn.microsoft.com/visualc/vctoolkit2003/
install : double-click
create a file .configure in /home/<username>/
use vi in MinGW or download nano for windows (http://www.nano-editor.org/)
add the following lines
export PATH=/c/Program\ Files/Microsoft\ Visual\ C++\ Toolkit\ 2003/bin:$PATH
export INCLUDE=/c/Program\ Files/Microsft\ Visual\ C++\ Toolkit\ 2003/include
export LIB=/c/Program\ Files/Microsoft\ Visual\ C++\ Toolkit\ 2003/lib
run the MSYS icon on the desktop
$ cd \dirac
$ ./configure
$ make
$ make install
behold - .exe files in the subdirectories