Go to
On the first page you see "Downloads", click on that.
On top of the page you see "Select your platform", click Windows and download the binaries for the free Borland C compiler end the "Contribution files for Borland"
Also take good notice of the information near the download links.
You see "Required Tools"
Click on that and download the free Borland C compiler
Also download the Bison version 1.875
To make it even easier here are the links and the information found with some of the links:
Rob.
xHarbour Binaries for Borland C++ 5.5.1 ( 4.4 Mb )
This download includes all binaries and libraries for Borland C++ 5.5.1.
xHarbour Contributions Libraries for Borland C++ 5.5.1 ( 813 Kb )
For a more detailed description of xHarbour Contributions, please follow this link.
A supported C compiler, linker, librarian and make are required since xHarbour uses C as intermediate language. The supported compilers/tools are:
Borland C compiler version 5.5.1
This is the Borland C++ Command Line compiler version 5.5 (bcc32). It also includes Borland Turbo Incremental Linker (tlink32) and Borland Resource Compiler /binder (brc32, brcc32)
Setting the Environment Variables for Borland C++:
• Make sure that the directory containing bcc32.exe is in your windows search path. bcc32.exe is located in the /bin subdirectory of the Borland C compiler installation directory.
• Make sure that there is a bcc32.cfg file in the \bin subdirectory of your compiler. Its needed to set the compiler options for the Include and Lib paths. This is what bcc32.cfg could contain:
-I"c:\Borland\bcc55\include"
-L"c:\Borland\bcc55\lib"
• Make sure that there is a ilink32.cfg file in the \bin subdirectory of your compiler. It is required in order to set the linker options for the Lib file paths. For example, a sample ilink32.cfg could contain (paths may differ):
-L"c:\Borland\bcc55\lib"
Bison version 1.875
Bison is a parser generator used by xHarbour developers that converts a grammar description for an LALR(1) context-free grammar into a C program to parse that grammar.