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 :cc:content-type; bh=T3s6qM1gRfgEuTNbpCGaUcNR6+jqDUKQM/aZs5j4lJg=; b=WpcSOZKXi1/+1trTwI9BaUQ17NWZkCh56Tku+67FdlWv+/v8CXKtg3fqPQ81DwLQci jo14pZ9xgkyeAtCCeTL1dkm0KrrQHJ0z/ri0NKiH3PMcH+NmH0/vVftQ1PWoHKMpzr/s 4uZXUClkhETWGYzcR51UyhlOsCjiTF2i0NEfWqPnfaS5qLzvukByaTVi6m1Hu7AKB8R5 bD5jYYJhgU+vHUjf+KON0n1BP6B81vvl6DO9cp4ONuBYem6C0uy65mJH5GqLdTPvK42S rXurFp4VCuvxl7ETmEQxJcBIHbzMROUffvtu1lnviCKg1k9P0QtNOiiuOrDYR2fVkSpf joWw== MIME-Version: 1.0 X-Received: by 10.50.78.100 with SMTP id a4mr7387972igx.34.1431331975416; Mon, 11 May 2015 01:12:55 -0700 (PDT) In-Reply-To: <55501DAD.1080604@iki.fi> References: <201505042003 DOT t44K3odg011007 AT delorie DOT com> <554DF584 DOT 4020309 AT iki DOT fi> <55501DAD DOT 1080604 AT iki DOT fi> Date: Mon, 11 May 2015 11:12:55 +0300 Message-ID: Subject: Re: ANNOUNCE: DJGPP 2.05 beta 1 From: "Ozkan Sezer (sezeroz AT gmail DOT com)" To: djgpp Cc: Andris Pavenis 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 [adding list back to CC] On 5/11/15, Andris Pavenis wrote: [...] > > You also mentioned stdbool.h and float.h issues (no patches yet). I do not > think we should touch > them now before actual 2.05 release. Also including GCC own header and ones > modified by > fixincludes in GCC build process before system ones is way how it is done > (not only for DJGPP but also > for other targets). For float.h issue: Well, -nostdinc means -nostdinc so I think that we should be consistent with it. For gcc >= 4.8 maybe define our _rdtsc() as __builtin_ia32_rdtsc()?? What was the exact problem with _rdtsc() with gcc >= 4.8? For stdbool.h: it defines bool, true and false which are native to C++ and therefore broken. Gcc's own stdbool.h is good of course, so why don't we copy from it? -- O.S.