X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Recipient: djgpp AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=LCWyE3ylPwMsbwrlxJHTZFzxx2TBBEjgEISyC7rOHJI=; b=Pzm4wLeQWVNowYiROL42RRsf9YhR1MCTmdsrVTZiE47SQvYqpoV+u6bLuPvq6L3vN8 RaJa/P9piM2wnw9uKXjBPXeGiKh5zawunk5Y92FkExVVDJAPkTCt/IOmmTsVdsWHbHnf H0sEcV+OetnL6cwagLhTiP0B3dv+4Fl7pUxqy3zDuI5ymMRHAmx0dNMoXJxKt/oHqeXg qJO8ycnl9L+cTsqXCdLBupMNdH9zoSLNDJ6Vytjm9Cwwops+NfNf2xKxepDS+cqJsXKo yrWjBsrXXzx48agWqk41qZ8gnss3XbdTKGWcrtShhFb4AzFr4NtOIfdF/C/OYSfxFVHW JHGw== MIME-Version: 1.0 X-Received: by 10.107.12.93 with SMTP id w90mr2513586ioi.10.1430814766494; Tue, 05 May 2015 01:32:46 -0700 (PDT) In-Reply-To: <201505042003.t44K3odg011007@delorie.com> References: <201505042003 DOT t44K3odg011007 AT delorie DOT com> Date: Tue, 5 May 2015 11:32:46 +0300 Message-ID: Subject: Re: ANNOUNCE: DJGPP 2.05 beta 1 From: "Ozkan Sezer (sezeroz AT gmail DOT com)" To: djgpp AT delorie DOT com Content-Type: text/plain; charset=UTF-8 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 On 5/4/15, Andris Pavenis (andris DOT pavenis AT iki DOT fi) wrote: > This is announcement of DJGPP 2.05 beta 1 > > It has numerous changes since previous DJGPP 2.04 beta 1 release in 2003. > (http://www.delorie.com/djgpp/mail-archives/browse.cgi?p=djgpp-announce/2003/12/06/22:18:05) > Unfortunately DJGPP v2.04 was never released and old beta version slowly > became almost unusable together with other newer DJGPP packages. > > More information about changes in DJGPP 2.05 beta 1 is available at > > http://www.delorie.com/djgpp/doc/kb/ > > both in sections about changes in 2.04 and 2.05. The same information is > also > available in file info/kb.inf in djdev205.zip > > It needs a lot of testing. Please test it if you have time and/or are > interested in any of the above features. Any level of testing would be > appreciated. > Looking at the commit log of src/makefile.cfg r1.2, we should add the following to current makefile.cfg, at least for sake of completeness. Index: makefile.cfg =================================================================== RCS file: /cvs/djgpp/djgpp/src/makefile.cfg,v retrieving revision 1.5 diff -u -r1.5 makefile.cfg --- makefile.cfg 3 May 2015 12:23:14 -0000 1.5 +++ makefile.cfg 5 May 2015 08:25:14 -0000 @@ -8,6 +8,12 @@ MTUNE := -mcpu=i586 IQUOTE := -I. -I- +ifeq ($(GCC_MAJOR),) +# very old gcc, e.g. gcc-2.95, fails the above, so we invent a default. +GCC_MAJOR := 2 +GCC_MINOR := 7 +endif + ifeq ($(filter 2 3,$(GCC_MAJOR)),) # we have gcc >= 4.x MTUNE := -mtune=i586 > The beta is not available via the Zip Picker interface. You can download it > from here: > > ftp://ftp.delorie.com/pub/djgpp/beta/v2 > > Additionally RPM packages (source and binary packages for i686 and x86_64) > are > available from > > ftp://ftp.delorie.com/pub/djgpp/rpms > > Please see the README file for instructions on how to install the beta: > > ftp://ftp.delorie.com/pub/djgpp/beta/v2/readme.1st > > You can also download DJGPP 2.05 beta 1 packages from DJGPP mirror sites: > > http://www.delorie.com/djgpp/getting.html > > Thanks for all who have contributed to development of DJGPP > > Andris Pavenis > -- O.S.