public inbox for libc-help@sourceware.org
 help / color / mirror / Atom feed
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
To: Waldemar Brodkorb <wbx@openadk.org>,
	"H.J. Lu" <hjl.tools@gmail.com>,
	Siddhesh Poyarekar <siddhesh@sourceware.org>
Cc: libc-help@sourceware.org
Subject: Re: cross-toolchain for x86 fails to compile
Date: Mon, 7 Feb 2022 14:08:28 -0300	[thread overview]
Message-ID: <94cd37dd-d6a3-0811-829d-a9d41d2cad41@linaro.org> (raw)
In-Reply-To: <YgE36Z/3DZ+p8HPJ@waldemar-brodkorb.de>



On 07/02/2022 12:16, Waldemar Brodkorb wrote:
> Hi,
> Adhemerval Zanella wrote,
> 
>>
>>
>> On 04/02/2022 21:35, Waldemar Brodkorb wrote:
>>> Hi,
>>>
>>> I am doing my regular update in OpenADK and updated to glibc 2.35.
>>> All toolchains are build fine except x86.
>>>
>>> I am getting following error with binutils 2.37 and gcc 11.2:
>>> /home/wbx/embedded-test/openadk/toolchain_qemu-x86_glibc/usr/bin/i686-openadk-linux-gnu-gcc
>>> -o
>>> /home/wbx/embedded-test/openadk/toolchain_build_qemu-x86_glibc/w-glibc-2.35-1/glibc-2.35-final/support/test-run-command
>>> -nostdlib -nostartfiles -static -static-pie
>>> /home/wbx/embedded-test/openadk/toolchain_build_qemu-x86_glibc/w-glibc-2.35-1/glibc-2.35-final/csu/rcrt1.o
>>> /home/wbx/embedded-test/openadk/toolchain_build_qemu-x86_glibc/w-glibc-2.35-1/glibc-2.35-final/csu/crti.o
>>> `/home/wbx/embedded-test/openadk/toolchain_qemu-x86_glibc/usr/bin/i686-openadk-linux-gnu-gcc
>>> --print-file-name=crtbeginS.o`
>>> /home/wbx/embedded-test/openadk/toolchain_build_qemu-x86_glibc/w-glibc-2.35-1/glibc-2.35-final/support/test-run-command.o
>>> /home/wbx/embedded-test/openadk/toolchain_build_qemu-x86_glibc/w-glibc-2.35-1/glibc-2.35-final/elf/static-stubs.o
>>> /home/wbx/embedded-test/openadk/toolchain_build_qemu-x86_glibc/w-glibc-2.35-1/glibc-2.35-final/support/libsupport_nonshared.a
>>> -Wl,--start-group
>>> /home/wbx/embedded-test/openadk/toolchain_build_qemu-x86_glibc/w-glibc-2.35-1/glibc-2.35-final/libc.a
>>> -lgcc  -Wl,--end-group
>>> `/home/wbx/embedded-test/openadk/toolchain_qemu-x86_glibc/usr/bin/i686-openadk-linux-gnu-gcc
>>> --print-file-name=crtendS.o`
>>> /home/wbx/embedded-test/openadk/toolchain_build_qemu-x86_glibc/w-glibc-2.35-1/glibc-2.35-final/csu/crtn.o
>>> /home/wbx/embedded-test/openadk/toolchain_qemu-x86_glibc/usr/lib/gcc/i686-openadk-linux-gnu/11.2.0/../../../../i686-openadk-linux-gnu/bin/ld:
>>> /home/wbx/embedded-test/openadk/toolchain_build_qemu-x86_glibc/w-glibc-2.35-1/glibc-2.35-final/libc.a(setlocale.o):
>>> relocation R_386_GOT32 against absolute symbol
>>> `_nl_current_LC_CTYPE_used' in section `__libc_freeres_fn' is
>>> disallowed
>>> collect2: error: ld returned 1 exit status
>>> gmake[8]: *** [../Rules:293:
>>> /home/wbx/embedded-test/openadk/toolchain_build_qemu-x86_glibc/w-glibc-2.35-1/glibc-2.35-final/support/test-run-command]
>>> Error 1
>>> gmake[7]: *** [Makefile:483: support/others] Error 2
>>> gmake[6]: *** [Makefile:9: all] Error 2
>>> gmake[5]: *** [Makefile:62:
>>> /home/wbx/embedded-test/openadk/toolchain_build_qemu-x86_glibc/w-glibc-2.35-1/glibc-2.35/.compiled]
>>> Error 2
>>> gmake[4]: *** [Makefile:106: glibc-compile] Error 2
>>> gmake[3]: *** [mk/build.mk:228: toolchain/final] Error 2
>>> gmake[2]: *** [/home/wbx/embedded-test/openadk/mk/build.mk:177:
>>> world] Error 2
>>> gmake[1]: *** [Makefile.adk:25: all] Error 2
>>> make: *** [Makefile:22: all] Error 2
>>> build failed
>>>
>>> Is it a known bug in binutils or glibc?
>>
>> None we are aware of and we do build check on i686 constantly.  I just did a build
>> with gcc 11.2 and binutins 2.37 and I haven't see any issue.  How did you build
>> gcc and binutils?
> 
> Thanks for your response. It seems TARGET CFLAGS are not allowed to
> be -Os or any machine specific optimizations for x86. Forcing -O2
> did work.

I should work in fact, we have tracked multiple issues when building with -Os
over the releases [1][2][3][4][5][6][7][8].

The problem seems to the that now static-pie is enabled as default and it 
seems to be triggering this issue (with --disable-static-pie it does seem 
to work).

The localedef.o is built with -fpie, as expected, so I am not sure if the
issue is compiler that is emitting wrong relocations for -Os or binutils
that is not expecting it.  With -O2 gcc emits R_386_GOT32X which seems to
be fine.

H.J or Siddhesh, could you check on this?

[1] https://sourceware.org/bugzilla/show_bug.cgi?id=15105
[2] https://sourceware.org/bugzilla/show_bug.cgi?id=19463
[3] https://sourceware.org/bugzilla/show_bug.cgi?id=25240
[4] https://sourceware.org/bugzilla/show_bug.cgi?id=22581
[5] https://sourceware.org/bugzilla/show_bug.cgi?id=20729
[6] https://sourceware.org/bugzilla/show_bug.cgi?id=19462
[7] https://sourceware.org/bugzilla/show_bug.cgi?id=19465
[8] https://sourceware.org/bugzilla/show_bug.cgi?id=19466

  reply	other threads:[~2022-02-07 17:08 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-05  0:35 Waldemar Brodkorb
2022-02-07 12:09 ` Adhemerval Zanella
2022-02-07 15:16   ` Waldemar Brodkorb
2022-02-07 17:08     ` Adhemerval Zanella [this message]
2022-02-07 22:59       ` H.J. Lu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=94cd37dd-d6a3-0811-829d-a9d41d2cad41@linaro.org \
    --to=adhemerval.zanella@linaro.org \
    --cc=hjl.tools@gmail.com \
    --cc=libc-help@sourceware.org \
    --cc=siddhesh@sourceware.org \
    --cc=wbx@openadk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).