Date: Thu, 01 Feb 2001 23:32:53 +0200 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: djgpp AT delorie DOT com Message-Id: <1438-Thu01Feb2001233252+0200-eliz@is.elta.co.il> X-Mailer: Emacs 20.6 (via feedmail 8.3.emacs20_6 I) and Blat ver 1.8.6 In-reply-to: <95ceoa$7l6$1@nnrp1.deja.com> (survivethis@my-deja.com) Subject: Re: compiling crafty References: <95ceoa$7l6$1 AT nnrp1 DOT deja DOT com> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: survivethis AT my-deja DOT com > Newsgroups: comp.os.msdos.djgpp > Date: Thu, 01 Feb 2001 19:51:43 GMT > > I'm trying to compile a program named crafty (public chess program). I get > the following error: > > gcc -c -fomit-frame-pointer -m486 -O3 -DCOMPACT_ATTACKS > -DUSE_ATTACK_FUNCTIONS - DUSE_ASSEMBLY_A -DUSE_ASSEMBLY_B -DDOS egtb.cpp In > file included from egtb.cpp:3228: tbdecode.h:79: warning: `cbEGTBCompBytes' > initialized and declared `extern' gcc -fomit-frame-pointer -m486 -O3 > -DCOMPACT_ATTACKS -DUSE_ATTACK_FUNCTIONS -DUS E_ASSEMBLY_A -DUSE_ASSEMBLY_B > -DDOS -c dgt.c as -o X86.o X86.s X86.s: Assembler messages: X86.s:4: Error: > bad or irreducible absolute expression; zero assumed X86.s:30: Error: bad or > irreducible absolute expression; zero assumed X86.s:45: I'm guessing that X86.s is actually X86.S (with a capital .S), and should be passed through the preprocessor before the assembler. Try this from the command line and see if it works: gcc -c X86.S If it works, replace the command in the Makefile. If that doesn't help, post the file X86.s here.