Open Watcom is a project of the open source community to maintain and enhance the Watcom C, C++, and Fortran cross compilers and tools. An Open Source license from Sybase allows free commercial and non-commercial use of Open Watcom. More about Open Watcom's features. Details about Open Watcom's history. Work in progress includes Linux and FreeBSD ports, support for new processors, support for new language features and standards, a C++ STL implementation and more.
An IDE is provided by Open Watcom, but to configure and compile plplot it is best to use the Windows CLI. Please follow the instructions in [setup_cli|Setup CLI] to get the Windows Command Line Interface ready for development. We need to set some environment variables in order for Open Watcom to work correctly. Go to Start->System Preferences->System->Advanced->Environment Variables. Add the following environment variables for your user:
set 'WATCOM' to C:\DevZone\WATCOM
set 'EDPATH' to C:\DevZone\WATCOM\EDDAT
where C:\DevZone\WATCOM is the path to your Open Watcom installation. This information is also provided in the file C:\DevZone\WATCOM\CHANGES.ENV. Than open your favorite text editor and enter the following CLI commands
@echo off
rem setup Open Watcom compiler
set WATCOM=C:\\DevZone\\WATCOM
set PATH=%WATCOM%\\BINNT;%WATCOM%\\BINW;%PATH%
set INCLUDE=%WATCOM%\\H;%WATCOM%\\H\\NT
rem setup PLplot library
set PLPLOTDIR=%USER_ROOTDIR%\\PLDev\\plplot\\buildwatcom
echo Set PLPLOT working directory to %PLPLOTDIR%.
set PLPLOT_LIB=%PLPLOTDIR%\\..\\data
set PATH=%PLPLOTDIR%\\dll;%PATH%
The content of this page is available under the GNU Free Documentation License 1.2.