Mail Archives: djgpp/1999/11/25/12:17:21
On Tue, 23 Nov 1999, azuaje wrote:
> I need to write cgi programs in C or C++ (preferably in C). I wonder if there is any cgi
> library for djgpp.
Compiling CGI programs with DJGPP is not a good idea at all: most
probably the resultant executable won't work. The problem is that DJGPP
produces DOS programs, which are run by Windows in a separate Virtual
Machine. Since the HTTP server, like any Windows program, runs in the
System VM it needs to employ special tricks to redirect standard input
and output from a DJGPP program. Alas, most Windows servers don't bother
to employ these tricks.
Compile the program with one of the compilers that produce Win32
applications. Section 3.6 of the DJGPP FAQ lists the available free
compilers that will fit the bill.
- Raw text -