Message-ID: <367C3C69.37AE4611@lightspeed.net> From: "David L. Painter" Organization: Kraftwerk Web Design X-Mailer: Mozilla 4.5 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: New installation on Win 95, cannot locate #include directories Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 102 NNTP-Posting-Date: Sat, 19 Dec 1998 17:53:38 CDT X-Trace: sv1-2rlx4gchF6c8b65upKfiWBjsacIxifkjpWyAALW38VX6ljLGoKSZRCO+k+PlFCknnNWYyi/aROq8/YA!m/UZCLNxuiQ/Rw== X-Complaints-To: abuse AT GigaNews DOT Com X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly Date: Sat, 19 Dec 1998 15:53:13 -0800 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Hopefully someone can help me with this small problem: After installing the DJGPP Gnu Gcc/Gxx/G++ program for MS-DOS, the program is still having problems finding the libraries at compile time. For a simple program like this: >//This is a test C++ program to test the GCC compiler >//filename: test.cpp >#include > >int main( int argc, char** argv) >{ > cout>>"This is a test of the Gnu C++ compiler.\n"; >} When compiling from within a Cygnus Cygwin Bourne Shell, using the GXX compiler, I receive error messages like this: >$gxx -o test test.cpp >In file included from test.cpp:3: >c:/gnucc/lang/cxx/iostream.h:31: streambuf.h: No such file or directory The Gcc compiler produces the exact same results. If I try to use the G++ compiler, I receive NO error messages, but the object file is not created. Any help would be appreciated Sincerely, David L. Painter dpainter AT lightspeed DOT net P.S. All of my DJGPP files are located in c:\gnucc\ ----------------------------------------------- this is my AUTOEXEC.BAT FILE: ;;SET THE PATH VARIABLE ;;WINDOWS DIRECTORIES: set PATH=C:\windows\;C:\windows\command\;C:\windows\system\; ;;BINARY DIRECTORIES set PATH=C:\;C:\bin\;C:\rwin\;C:\javac\bin\;C:\emacs\bin\;C:\perl\bin\;C:\gnucc\bin\;%PATH% ;;OTHER NEEDED PROGRAM DIRECTORIES set PATH=C:\windows\inf\;C:\windows\temp\;C:\prog\KV95\;C:\prog\cygnus\cygwin\intel\bin\;%PATH% set PATH=C:\emacs\lisp\;C:\docs\perl\;%PATH% ;;TEMPORARY DIRECTORIES set TEMP=C:\windows\temp; set TMP=C:\tmp; ;; ENVIRONMENT VARIABLES set DJGPP=C:\gnucc\djgcc.env set PERL5LIB=C:\perl\lib\ set HOME=C:\ set HOSTNAME=ares set WINBOOTDIR=C:\windows\ set WINDIR=C:\windows\ set TERM=cygwin set CMDLINE=win set BLASTER=A220 I5 D1 H5 P330 T6 set COMSPEC=C:\windows\command.com --------------------------------------------------- THIS IS THE RESULT OF THE "SET" COMMAND: HOSTNAME=ARES HOME=/ PROMPT=$p$g PS1=$ OPTIND=1 _=go32-v2 WINBOOTDIR=C:\WINDOWS TEMP=C:\WINDOWS\TEMP TERM=cygwin DJGPP=C:\GNUCC\DJGPP.ENV WINDIR=C:\WINDOWS CMDLINE=WIN BLASTER=A220 I5 D1 H5 P330 T6 PATH=/WINDOWS:/WINDOWS/COMMAND:/:/WINDOWS/:/BIN/:/PROG/CYGNUS/CYGWIN/INTEL/BIN/:/WINDOWS/INF/:/WINDOWS/SYSTEM/:/WINDOWS/COMMAND/:/WINDOWS/TEMP/:/PROG/KV95/:/JAVAC/BIN/:/EMACS/BIN/:/EMACS/LISP/:/PERL/BIN/:/GNUCC/BIN/:/DOCS/PERL/:/RWIN/:/PROG/NETMEETING/:/PROG/FSI/:/PROG/ACCESSORIES/:/PROG/AMAYA/THOT/WINDOWS/BIN/:/PROG/YAHOO!/:/PROG/HYPER/:/PROG/FRACTAL/GRAF/:/GNUCC/LANG/CXX/:. PERL5LIB=C:\PERL\LIB TMP=C:\WINDOWS\TEMP PWD=/gnucc/bin COMSPEC=C:\WINDOWS\COMMAND.COM ------------------------------------------------- This is the result of executing "go32-v2": DPMI memory available: 33595 Kb DPMI swap space available: 29021 Kb --------------------------------------------------