Sender: nate AT cartsys DOT com Message-ID: <35BA5D74.431C7187@cartsys.com> Date: Sat, 25 Jul 1998 15:34:28 -0700 From: Nate Eldredge MIME-Version: 1.0 To: Alexander S Ingram CC: djgpp AT delorie DOT com Subject: Re: Problem with make References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Precedence: bulk Alexander S Ingram wrote: > > I just downloaded all the files that the zip picker specified on > www.delorie.com. I figured the first thing i would do would be to complie > and run one of the test files.Using Rhide, I try to compile the file > d:/djgpp/test/test.c and get no errors however when I try to make the file > I get a bunch of error of errors like > circtest.c (23) Error:undefined reference to 'GrPlot' > 'GrSetMode' > 'GrFilledBox' Those come from the GRX graphics library. I don't use RHIDE, but I believe you have to add `grx20' to the Libraries box. But that isn't a standard test, unless it's a GRX test. The usual test for a C compiler is this program: #include int main (void) { printf("Hello, world!\n"); return 0; } -- Nate Eldredge nate AT cartsys DOT com