X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Received: by 10.98.71.209 with SMTP id p78mr24864473pfi.13.1454481713028; Tue, 02 Feb 2016 22:41:53 -0800 (PST) X-Received: by 10.182.134.132 with SMTP id pk4mr489269obb.6.1454481712992; Tue, 02 Feb 2016 22:41:52 -0800 (PST) Newsgroups: comp.os.msdos.djgpp Date: Tue, 2 Feb 2016 22:41:52 -0800 (PST) In-Reply-To: <5297e3a3-037a-4b71-a1de-6fabccc69f11@googlegroups.com> Complaints-To: groups-abuse AT google DOT com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=65.13.115.246; posting-account=p5rsXQoAAAB8KPnVlgg9E_vlm2dvVhfO NNTP-Posting-Host: 65.13.115.246 References: <201601312013 DOT u0VKDC4O017569 AT delorie DOT com> <56AF7CFB DOT 8010507 AT iki DOT fi> <56B1854C DOT 30800 AT iki DOT fi> <5297e3a3-037a-4b71-a1de-6fabccc69f11 AT googlegroups DOT com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: ANNOUNCE: Update of DJGPP port of gcc-5.3.0 From: "rugxulo AT gmail DOT com [via djgpp AT delorie DOT com]" Injection-Date: Wed, 03 Feb 2016 06:41:53 +0000 Content-Type: text/plain; charset=ISO-8859-1 Bytes: 2196 Lines: 26 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp 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 Hi, On Tuesday, February 2, 2016 at 11:16:24 PM UTC-6, rug DOT DOT DOT AT gmail DOT com wrote: > > So the 3D Engine successfully builds okay for you (atop Windows)???? > > Here it's seemingly confused, apparently about subdirs. Well, just for comparison, I tried older GCC 4.9.3 and BinUtils 2.26: It builds and works okay, but only if you remove the unsupported "-Wl,--gc-sections" in e3d.gpr (which otherwise crashes the linker). package Linker is case Build_Mode is when "Small" => for Default_Switches ("ada") use ("-s", "-Wl,--gc-sections"); when "Fast" => for Default_Switches ("ada") use ("-s", "-Wl,--gc-sections"); when "Debug" => for Default_Switches ("ada") use ("-g"); end case; end Linker; ... use ("-s"); ... use ("-s"); ... use ("-g");