From: Andrew Crabtree Message-Id: <199704012348.AA076818531@typhoon.rose.hp.com> Subject: Re: making exe's in RHIDE... To: Bennett AT btinternet DOT com (Matthew Bennett) Date: Tue, 01 Apr 1997 15:48:51 PST Cc: djgpp AT delorie DOT com In-Reply-To: <01bc3ec2$782b1c40$233363c3@8652hvt73761>; from "Matthew Bennett" at Apr 1, 97 5:32 pm > #include > > When I come to make that program, RHIDE says > "Don't know how to build stdio.o from stdio.h". > > How can I get it to make an exe out of my program with include > files?! It sounds like you may be including .h files in your rhide project( which is bad). Try the following create myfile.c in some directory myfile.c #include int main(void) { printf("Hello\n"); return 0; } Then create a new project and add just myfile.c to it. If that doesn't work use rhides bug report feature and post that. Andrew