From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 52910 invoked by alias); 30 Nov 2017 22:37:30 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 52900 invoked by uid 89); 30 Nov 2017 22:37:30 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,KB_WAM_FROM_NAME_SINGLEWORD,SPF_PASS autolearn=no version=3.3.2 spammy=Hx-languages-length:1339, HTo:U*carlos X-HELO: 9pmail.ess.barracuda.com Date: Thu, 30 Nov 2017 22:37:00 -0000 From: "Maciej W. Rozycki" To: Carlos O'Donell CC: "H.J. Lu" , Szabolcs Nagy , nd , Joseph Myers , GNU C Library Subject: Re: PING^N: [PATCH] Add --enable-static-pie to build static PIE [BZ #19574] In-Reply-To: <02278c7c-ade4-c8f2-c978-e66f77a101bd@redhat.com> Message-ID: References: <5A12C781.3030700@arm.com> <5A18196C.90208@arm.com> <02278c7c-ade4-c8f2-c978-e66f77a101bd@redhat.com> User-Agent: Alpine 2.00 (DEB 1167 2008-08-23) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" X-BESS-ID: 1512081439-298554-29164-165777-14 X-BESS-VER: 2017.14-r1710272128 X-BESS-Apparent-Source-IP: 12.201.5.28 X-BESS-Outbound-Spam-Score: 0.20 X-BESS-Outbound-Spam-Report: Code version 3.2, rules version 3.2.2.187478 Rule breakdown below pts rule name description ---- ---------------------- -------------------------------- 0.00 BSF_BESS_OUTBOUND META: BESS Outbound 0.20 PR0N_SUBJECT META: Subject has letters around special characters (pr0n) X-BESS-Outbound-Spam-Status: SCORE=0.20 using account:ESS59374 scores of KILL_LEVEL=7.0 tests=BSF_BESS_OUTBOUND, PR0N_SUBJECT X-BESS-BRTS-Status:1 X-SW-Source: 2017-11/txt/msg01068.txt.bz2 On Thu, 30 Nov 2017, Carlos O'Donell wrote: > > FAIL: glibcs-mips64el-linux-gnu-n32 build > > FAIL: glibcs-mips64el-linux-gnu-n32-nan2008 build > > FAIL: glibcs-mips64el-linux-gnu-n32-nan2008-soft build > > FAIL: glibcs-mips64el-linux-gnu-n32-soft build > > FAIL: glibcs-mips64-linux-gnu-n32 build > > FAIL: glibcs-mips64-linux-gnu-n32-nan2008 build > > FAIL: glibcs-mips64-linux-gnu-n32-nan2008-soft build > > FAIL: glibcs-mips64-linux-gnu-n32-soft build > > FAIL: glibcs-mipsel-linux-gnu build > > FAIL: glibcs-mipsel-linux-gnu-nan2008 build > > FAIL: glibcs-mipsel-linux-gnu-nan2008-soft build > > FAIL: glibcs-mipsel-linux-gnu-soft build > > FAIL: glibcs-mips-linux-gnu build > > FAIL: glibcs-mips-linux-gnu-nan2008 build > > FAIL: glibcs-mips-linux-gnu-nan2008-soft build > > FAIL: glibcs-mips-linux-gnu-soft build > > > > elf/sln is failed to link due to: > > > > crt1.o: relocation R_MIPS_HI16 against `_gp' can not be used when making a shared object; recompile with -fPIC > > > > This is caused by linker bug and/or non-PIC code in crt1.o. Or likely a bug in the `make' recipe used to link `sln' -- Scrt1.o has to be chosen instead for PIE links and the GCC driver gets it right, however we use `-nostartfiles' and link in the bits by hand. Maciej