From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31122 invoked by alias); 7 Feb 2015 01:13:41 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 31060 invoked by uid 48); 7 Feb 2015 01:13:37 -0000 From: "dje at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug bootstrap/53348] Conflicting fast-integer types on AIX: vs. gcc/config/rs6000/aix-stdint.h Date: Sat, 07 Feb 2015 01:13:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: bootstrap X-Bugzilla-Version: 4.7.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dje at gcc dot gnu.org X-Bugzilla-Status: WAITING X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2015-02/txt/msg00640.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53348 --- Comment #8 from David Edelsohn --- Patches are reviewed on gcc-patches mailinglist, not in Bugzilla > The attached patch is everything I've got so far to address issues in > building GCC on AIX 4.3. This covers issues beyond this bug report, but I > figured you'd rather take care of everything in one go. A walk-through of > the changes: > > ++ gcc/opt-functions.awk > > * Escape "{" characters to not annoy older awk programs Prerequisites for GCC explicitly states that POSIX or SVR4 awk is required, so I don't think that this work-around would be accepted. For example, you can install GNU Awk. > > ++ gcc/config/rs6000/rs6000.c > > * legitimate_indirect_address_p() was coming up as undefined when declared > with the "inline" keyword This already has been changed. > * ASM_WEAKEN_DECL() was coming up undefined, too, even though the call is in > a section of code not actually used on this platform > > ++ fixincludes/tests/base/*.h > > * Updates to the test suite > > ++ fixincludes/inclhack.def > > * Fixinclude for the oddly-sized fast-integer types > > * Fixinclude for the broken PRIxNN macros in inttypes.h > > * Fixinclude for an incomplete PTHREAD_ONCE_INIT (breaks -Werror builds) > > * Tweaked the aix_pthread hack, as pthread.h has a tab character immediately > after the "#define" on my system > > * Fixinclude for an strtof() declaration lacking a const keyword (bug #48009) The fixincludes changes are the most plausible ones.