public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug sanitizer/59009] New: libsanitizer merge from upstream r191666 breaks bootstrap on powerpc64-linux
@ 2013-11-05 18:36 bergner at gcc dot gnu.org
  2013-11-06 11:47 ` [Bug sanitizer/59009] " rguenth at gcc dot gnu.org
                   ` (55 more replies)
  0 siblings, 56 replies; 57+ messages in thread
From: bergner at gcc dot gnu.org @ 2013-11-05 18:36 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59009

            Bug ID: 59009
           Summary: libsanitizer merge from upstream r191666 breaks
                    bootstrap on powerpc64-linux
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: blocker
          Priority: P3
         Component: sanitizer
          Assignee: unassigned at gcc dot gnu.org
          Reporter: bergner at gcc dot gnu.org
                CC: dodji at gcc dot gnu.org, dvyukov at gcc dot gnu.org,
                    jakub at gcc dot gnu.org, kcc at gcc dot gnu.org

The recent merge of upstream libsanitizer broke bootstrap on powerpc64-linux
with:

In file included from
/home/bergner/gcc/gcc-fsf-mainline-base/libsanitizer/sanitizer_common/sanitizer_platform_limits_linux.cc:21:0:
/usr/include/asm/stat.h:31:2: error: ‘ino_t’ does not name a type
  ino_t  st_ino;
  ^
/usr/include/asm/stat.h:33:2: error: ‘nlink_t’ does not name a type
  nlink_t  st_nlink;
  ^
/usr/include/asm/stat.h:34:2: error: ‘mode_t’ does not name a type
  mode_t  st_mode;
  ^
/usr/include/asm/stat.h:39:2: error: ‘uid_t’ does not name a type
  uid_t  st_uid;
  ^
/usr/include/asm/stat.h:40:2: error: ‘gid_t’ does not name a type
  gid_t  st_gid;
  ^
/usr/include/asm/stat.h:42:2: error: ‘off_t’ does not name a type
  off_t  st_size;
  ^
/home/bergner/gcc/gcc-fsf-mainline-base/libsanitizer/sanitizer_common/sanitizer_platform_limits_linux.cc:29:73:
error: invalid application of ‘sizeof’ to incomplete type
‘__sanitizer::__old_kernel_stat’
   unsigned struct___old_kernel_stat_sz = sizeof(struct __old_kernel_stat);
                                                                         ^
make[4]: *** [sanitizer_platform_limits_linux.lo] Error 1

Even if we were to resolve the missing types, the PPC64 kernel does not define
a "struct __old_kernel_stat", because it never had one.  What is libsanitizer
even doing with the __old_kernel_stat?  We switched away from the old kernel
stat ages ago, so I can't believe we're trying to support running on the
ancient kernels.
>From gcc-bugs-return-433647-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Tue Nov 05 18:49:08 2013
Return-Path: <gcc-bugs-return-433647-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 23566 invoked by alias); 5 Nov 2013 18:49:07 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 20895 invoked by uid 48); 5 Nov 2013 18:47:05 -0000
From: "benlynn at gmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/59010] New: ICE in make_Decl_
Date: Tue, 05 Nov 2013 18:49:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.8.1
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: benlynn at gmail dot com
X-Bugzilla-Status: UNCONFIRMED
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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter
Message-ID: <bug-59010-4@http.gcc.gnu.org/bugzilla/>
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: 2013-11/txt/msg00424.txt.bz2
Content-length: 365

http://gcc.gnu.org/bugzilla/show_bug.cgi?idY010

            Bug ID: 59010
           Summary: ICE in make_Decl_
           Product: gcc
           Version: 4.8.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: benlynn at gmail dot com


^ permalink raw reply	[flat|nested] 57+ messages in thread

end of thread, other threads:[~2015-06-26 20:32 UTC | newest]

Thread overview: 57+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-11-05 18:36 [Bug sanitizer/59009] New: libsanitizer merge from upstream r191666 breaks bootstrap on powerpc64-linux bergner at gcc dot gnu.org
2013-11-06 11:47 ` [Bug sanitizer/59009] " rguenth at gcc dot gnu.org
2013-11-06 21:00 ` eugeni.stepanov at gmail dot com
2013-11-11 21:09 ` mikpelinux at gmail dot com
2013-11-12 17:32 ` meissner at gcc dot gnu.org
2013-11-12 17:37 ` kcc at gcc dot gnu.org
2013-11-12 22:01 ` mikpelinux at gmail dot com
2013-11-13  6:03 ` kcc at gcc dot gnu.org
2013-11-13 17:06 ` bergner at gcc dot gnu.org
2013-11-13 17:14 ` meissner at linux dot vnet.ibm.com
2013-11-13 17:23 ` jakub at gcc dot gnu.org
2013-11-13 17:28 ` kcc at gcc dot gnu.org
2013-11-13 22:34 ` bergner at gcc dot gnu.org
2013-11-14  5:05 ` dave.anglin at bell dot net
2013-11-14 15:24 ` bergner at gcc dot gnu.org
2013-11-14 17:27 ` bergner at gcc dot gnu.org
2013-11-14 18:04 ` dave.anglin at bell dot net
2013-11-14 18:15 ` bergner at gcc dot gnu.org
2013-11-14 18:24 ` jakub at gcc dot gnu.org
2013-11-15  3:25 ` dave.anglin at bell dot net
2013-12-08 17:14 ` danglin at gcc dot gnu.org
2013-12-09 13:01 ` kcc at gcc dot gnu.org
2013-12-09 13:10 ` dominiq at lps dot ens.fr
2013-12-09 13:33 ` kcc at gcc dot gnu.org
2013-12-09 17:14 ` dominiq at lps dot ens.fr
2013-12-10 16:46 ` danglin at gcc dot gnu.org
2013-12-10 16:49 ` jakub at gcc dot gnu.org
2013-12-10 17:46 ` dominiq at lps dot ens.fr
2013-12-10 18:21 ` dave.anglin at bell dot net
2013-12-19  9:30 ` dominiq at lps dot ens.fr
2013-12-19  9:31 ` kcc at gcc dot gnu.org
2013-12-19  9:34 ` dominiq at lps dot ens.fr
2013-12-19  9:40 ` kcc at gcc dot gnu.org
2013-12-19 10:09 ` dominiq at lps dot ens.fr
2013-12-19 12:54 ` kcc at gcc dot gnu.org
2013-12-19 22:36 ` dominiq at lps dot ens.fr
2013-12-19 22:53 ` dave.anglin at bell dot net
2013-12-20 17:36 ` dave.anglin at bell dot net
2014-04-22 11:38 ` jakub at gcc dot gnu.org
2014-07-16 13:31 ` jakub at gcc dot gnu.org
2014-10-19 22:11 ` sandra at codesourcery dot com
2014-10-19 22:20 ` pinskia at gcc dot gnu.org
2014-10-30 10:42 ` jakub at gcc dot gnu.org
2014-12-10 10:16 ` jiwang at gcc dot gnu.org
2014-12-10 10:51 ` [Bug sanitizer/59009] libsanitizer merge from upstream r191666 breaks bootstrap on powerpc64-linux and aarch64-linux jiwang at gcc dot gnu.org
2015-02-04 12:58 ` mkuvyrkov at gcc dot gnu.org
2015-02-04 12:59 ` mkuvyrkov at gcc dot gnu.org
2015-02-04 17:40 ` clyon at gcc dot gnu.org
2015-02-05 17:19 ` clyon at gcc dot gnu.org
2015-02-07 21:43 ` clyon at gcc dot gnu.org
2015-02-25 10:36 ` clyon at gcc dot gnu.org
2015-03-03 21:23 ` clyon at gcc dot gnu.org
2015-03-03 21:24 ` clyon at gcc dot gnu.org
2015-03-23 14:05 ` clyon at gcc dot gnu.org
2015-03-23 14:06 ` clyon at gcc dot gnu.org
2015-06-26 20:02 ` jakub at gcc dot gnu.org
2015-06-26 20:32 ` jakub at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).