https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97787
--- Comment #9 from Xi Ruoyao <xry111 at mengyan1223 dot wang> --- (In reply to rguent...@suse.de from comment #8) > I guess it is because -mxgot is supposed to be handled by the assembler? > I see > > %{mgp32} %{mgp64} %{march=*} %{mxgot:-xgot} \ > > in ASM_SPEC. I guess this doesn't make it to COLLECT_AS_OPTIONS > and eventually makes it dropped from COLLECT_GCC_OPTIONS as well. I don't think so. I can reproduce this issue compiling spidermonkey (js interpreter) from firefox-78 ESR. I'm using "-pipe" so I can easily find the parameters passed to "as", using "ps -aux". "-xgot" is passed correctly. > Can you attach the full output of compiling & linking with -v added? > > Can you try using -mxgot -Wa,-xgot or -mxgot -Xassembler -xgot at > compile time? I'm trying, though my gut feeling is that it won't work.