Setting Up Windows to Build Using GNU Ada
=============================================

32-bit build system:

First install MinGW.
Note that the default installation location is
	c:\MinGW
Then add "c:\MinGW\bin" to your path.

Next type

	mingw-get update
	mingw-get upgrade

These 2 commands grab & install the latest GNU compilers, including Ada.

Thusly, the following become usable :

	gnatmake
	g++
	gcc
	etc.

=================================================

64-bit build system:

First install MSYS2:
See https://www.msys2.org/

Then, launch an msys2 window using msys2.exe.
In that new window type:

 pacman -S mingw-w64-x86_64-gcc
 pacman -S mingw-w64-x86_64-gcc-ada

after which you may exit the MSYS2 window.

Now, back in your usual Windows command prompt, you may add:
	PATH=c:\msys64\mingw64\bin;%PATH%
to your path in order to make visible the Ada and C++
compilers: gnatmake, g++, etc.

