How To - Win32 on GNAT
GNAT 3.11 comes with the Win32 binding, so these instructions are only needed for installing Win32 on GNAT 3.10p
This article assumes you have already installed GNAT 3.10p.
- Get Win32Ada bindings from PAL mirror of AJPO
- Get the patches from Pascal Obry's web site called pw32ada1.tar.gz
- You will need the utilities gzip, tar, and patch. If you don't already have them you can get them at Jerry's Win32 site.
- Follow the directions in the readme.txt found in the Patch or here.
- Copy the file YOUR_PATH_TO\win32ada\lib\win32ada.a to YOUR_PATH_TO\usr\lib\libwin32ada.a
- You can now compile programs for win32 by using the pragmas:
- pragma Linker_Options("-mwindows");
- pragma Linker_Options("-lwin32ada");
and
gnatmake filename.adb -IYOUR_PATH_TO\win32ada\src
Contributed by: David Botton
Contributed on: December 1, 1998
Last Updated on: March 16, 1999
License: Public Domain
Back