From: "Groman" Newsgroups: comp.os.msdos.djgpp Subject: Freaky upgrade results... Date: Fri, 13 Apr 2001 15:00:37 -0700 Organization: MindSpring Enterprises Lines: 34 Message-ID: <9b7svb$1o8$1@slb6.atl.mindspring.net> NNTP-Posting-Host: d8.af.58.ee X-Server-Date: 13 Apr 2001 22:01:15 GMT X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com ok, I just upgraded DJGPP to the latest ZIPs, and now my stuff doesn't work.(i'm experimenting with embedded code). It just worked 30 minutes ago, until I unpacked the zip files.. -- MAKEFILE --- CC = gcc CPP = gpp ASM = nasm LD = ld-elf CPPFLAGS = -c -nostdlib -nostdinc -fno-builtin -fno-exceptions -fno-rtti LDFLAGS = -static -o bin/kernel.sys -Ttext 0x100000 -v ASMFLAGS = -f elf embed.sys: $(CPP) $(CPPFLAGS) -o kernel.o kernel.cpp $(LD) $(LDFLAGS) kernel.o ---- ERROR MESSAGE --- ld-elf -static -o bin/kernel.sys -Ttext 0x100000 -v loader.o kernel.o lowlevel.o textscr.o GNU ld version 2.9 (with BFD 2.9) c:/groman/djgpp/bin/ld-elf.exe: kernel.o: Unrecognized storage class 127 for .text symbol `_cli__Fv' ----------------- What the heck? I don't even know what the heck that means. (I have binutils-elf 2.9, and the latest DJGPP zips) Is there an updated binutils-elf somewhere around for DOS? Thanx.