From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 83800 invoked by alias); 14 Aug 2018 22:18:47 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 83788 invoked by uid 89); 14 Aug 2018 22:18:46 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=H*r:sk:h4-v6so X-HELO: mail-qt0-f194.google.com Received: from mail-qt0-f194.google.com (HELO mail-qt0-f194.google.com) (209.85.216.194) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 14 Aug 2018 22:18:43 +0000 Received: by mail-qt0-f194.google.com with SMTP id h4-v6so22894509qtj.7 for ; Tue, 14 Aug 2018 15:18:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=subject:to:references:cc:from:message-id:date:user-agent :mime-version:in-reply-to:content-transfer-encoding; bh=f2jBam16QSEpF2R6KA/96QZKEHgf+yybziJ9Tppqv/0=; b=Rxdicky/csyR6UxXBi01PS2psH1FdLQs15z3SfPqGr2GgJCCwEV+ZJlP0pzo+9WjPK tsgNQo99icPvvFtruBTnZD7uchW1oDWG+jPmWFn8Z5dlkDIQ5FdTxMpmbzR0aMsZRTL8 xw1/E8Zo1yGMSZre1wARA8T8mgAlFC4xRCeZAcuJq3pne0aX5fhTsvM7pIqkimfY67ip vyM8/fwblQDY5n3F8n0nTYHjDqW3P1sWO7k7QaadPUOnrHTD0xoQyIk6EwEz5vVj+yLA 9BjZsiw+wgqHc1Kzid+g/2kd35udAFpE4ODBmNjeMxGany86g6RxljejVjKHeGm3nb7d jMXg== Return-Path: Received: from localhost.localdomain (75-166-100-32.hlrn.qwest.net. [75.166.100.32]) by smtp.gmail.com with ESMTPSA id s25-v6sm14552415qth.59.2018.08.14.15.18.39 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 14 Aug 2018 15:18:40 -0700 (PDT) Subject: Re: [PATCH] convert braced initializers to strings (PR 71625) To: Joseph Myers , James Greenhalgh References: Cc: Jason Merrill , Gcc Patch List , nd From: Martin Sebor Message-ID: <04935db6-1c50-90c4-9b25-b6e5ce4f446b@gmail.com> Date: Tue, 14 Aug 2018 22:18:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2018-08/txt/msg00840.txt.bz2 On 08/14/2018 03:14 PM, Joseph Myers wrote: > On Tue, 14 Aug 2018, James Greenhalgh wrote: > >> Hi Martin, >> >> This causes issues for the AArch64 tests (full list below). > > This change (r263511) also breaks the glibc build for alpha-linux-gnu with > build-many-glibcs.py (using mainline GCC and binutils). The error I see > is: > > /scratch/jmyers/glibc-bot/install/compilers/alpha-linux-gnu/lib/gcc/alpha-glibc-linux-gnu/9.0.0/../../../../alpha-glibc-linux-gnu/bin/ld: > /scratch/jmyers/glibc-bot/build/compilers/alpha-linux-gnu/glibc/alpha-linux-gnu/libc.a(plural.o): > in function `__gettextparse': > /scratch/jmyers/glibc-bot/build/compilers/alpha-linux-gnu/glibc/alpha-linux-gnu/intl/plural.c:1108:(.text+0x218): > relocation truncated to fit: GPRELHIGH against `.sdata' > /scratch/jmyers/glibc-bot/install/compilers/alpha-linux-gnu/lib/gcc/alpha-glibc-linux-gnu/9.0.0/../../../../alpha-glibc-linux-gnu/bin/ld: > /scratch/jmyers/glibc-bot/build/compilers/alpha-linux-gnu/glibc/alpha-linux-gnu/intl/plural.c:1348:(.text+0x300): > relocation truncated to fit: GPRELHIGH against `.sdata' > collect2: error: ld returned 1 exit status > ../Rules:224: recipe for target > '/scratch/jmyers/glibc-bot/build/compilers/alpha-linux-gnu/glibc/alpha-linux-gnu/elf/sln' > failed > make[3]: *** > [/scratch/jmyers/glibc-bot/build/compilers/alpha-linux-gnu/glibc/alpha-linux-gnu/elf/sln] > Error 1 > > This is with Bison 3.0.4, should the version used to produce intl/plural.c > prove relevant. Can you send me the translation unit and the options it was compiled with that triggered the errors? Thanks Martin