From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/13168 Path: news.gmane.org!.POSTED!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: Re: Compiling 32bit executables on 64bit system with MUSL Date: Sun, 2 Sep 2018 17:18:01 +0200 Message-ID: <20180902151801.GJ4418@port70.net> References: <20180902160125.a754c267dcd23f87d004dbb0@asm32.info> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: blaine.gmane.org 1535901373 18072 195.159.176.226 (2 Sep 2018 15:16:13 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 2 Sep 2018 15:16:13 +0000 (UTC) User-Agent: Mutt/1.9.1 (2017-09-22) To: musl@lists.openwall.com Original-X-From: musl-return-13184-gllmg-musl=m.gmane.org@lists.openwall.com Sun Sep 02 17:16:09 2018 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.84_2) (envelope-from ) id 1fwU6i-0004YK-Im for gllmg-musl@m.gmane.org; Sun, 02 Sep 2018 17:16:08 +0200 Original-Received: (qmail 16104 invoked by uid 550); 2 Sep 2018 15:18:14 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 16086 invoked from network); 2 Sep 2018 15:18:14 -0000 Mail-Followup-To: musl@lists.openwall.com Content-Disposition: inline In-Reply-To: <20180902160125.a754c267dcd23f87d004dbb0@asm32.info> Xref: news.gmane.org gmane.linux.lib.musl.general:13168 Archived-At: * John Found [2018-09-02 16:01:25 +0300]: > $musl-gcc -o hello ./hello.c > /usr/bin/ld: /usr/lib/gcc/x86_64-pc-linux-gnu/8.2.0/32/crtbegin.o: direct GOT relocation R_386_GOT32X against `_ITM_deregisterTMCloneTable' without base register can not be used when making a shared object > /usr/bin/ld: final link failed: nonrepresentable section on output > collect2: error: ld returned 1 exit status > > Actually my C programming skills are very low, so I can't even understand what the linker is talking about. > > The version of GCC is 8.2.0; your toolchain is probably default-pie (gcc -v will show --enable-default-pie) this means linking an executable will be linked like a shared library and all object files have to be position independent, but your specs file uses crtbegin.o, which is non-pie, instead of crtbeginS.o so linking fails (try passing -no-pie at link time to gcc).