From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 2F59C3858D28; Mon, 7 Aug 2023 13:11:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2F59C3858D28 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1691413869; bh=J+yLhm3OsoldPJ2Ot57eq9eQoEf/BKDE29TgcwR362o=; h=Date:From:To:Subject:Reply-To:References:In-Reply-To:From; b=vdMH2huhYosaLA/jh9UHq8X8dG+8KlmrYhrWvsfGZLviSuL96Ri2EpaiIktuYNG5/ MupNXy3oBGLxrmUF7RetZGrOWDwPym+mSV87dIwpMfR2TlxDBqeH0v8tphs1pxqaPZ xLoHgMeq6tSL1wPmnqbaX5w7RCQ99STVWnoWZVcY= Received: by calimero.vinschen.de (Postfix, from userid 500) id 72043A80BDA; Mon, 7 Aug 2023 15:11:07 +0200 (CEST) Date: Mon, 7 Aug 2023 15:11:07 +0200 From: Corinna Vinschen To: cygwin-developers@cygwin.com Subject: Re: cygwin1.dll build failure Message-ID: Reply-To: cygwin-developers@cygwin.com Mail-Followup-To: cygwin-developers@cygwin.com References: <20230807214620.98f99125af5483f9a978cac1@nifty.ne.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20230807214620.98f99125af5483f9a978cac1@nifty.ne.jp> List-Id: On Aug 7 21:46, Takashi Yano wrote: > After the commit: > https://cygwin.com/git/?p=newlib-cygwin.git;a=commit;h=3c75fac130b5720068707f67b12f4372abf4ad38 > > aio.h and aio.cc cause error on compiling... Meaning, we never actually saw the restrict keyword when building Cygwin. We either have to drop the __restrict from the brackets in the lio_listio definition, or we have to define and use __restrict_arr like GLibc's cdefs.h. Corinna