public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
@ 2011-01-09 13:17 ubizjak at gmail dot com
  2011-01-09 13:47 ` [Bug bootstrap/47230] [4.6 Regression] " ubizjak at gmail dot com
                   ` (27 more replies)
  0 siblings, 28 replies; 29+ messages in thread
From: ubizjak at gmail dot com @ 2011-01-09 13:17 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

           Summary: gcc fails to bootstrap on alpha in stage2 with
                    "relocation truncated to fit: GPREL16 against ..."
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: ubizjak@gmail.com


GCC fails to bootstrap on alphaev68-unknown-linux-gnu in stage2 with:

/home/uros/gcc-build/./prev-gcc/xgcc -B/home/uros/gcc-build/./prev-gcc/
-B/usr/local/alphaev68-unknown-linux-gnu/bin/
-B/usr/local/alphaev68-unknown-linux-gnu/bin/
-B/usr/local/alphaev68-unknown-linux-gnu/lib/ -isystem
/usr/local/alphaev68-unknown-linux-gnu/include -isystem
/usr/local/alphaev68-unknown-linux-gnu/sys-include      -g -O2 -gtoggle
-DIN_GCC   -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes
-Wmissing-prototypes -Wmissing-format-attribute -pedantic -Wno-long-long
-Wno-variadic-macros -Wno-overlength-strings -Werror -Wold-style-definition
-Wc++-compat -fno-common  -DHAVE_CONFIG_H -static-libstdc++ -static-libgcc  -o
lto1 \
    lto/lto-lang.o lto/lto.o lto/lto-object.o attribs.o main.o tree-browser.o
libbackend.a ../libcpp/libcpp.a ../libdecnumber/libdecnumber.a -lcloog -lppl_c
-lppl -lgmpxx -lmpc -lmpfr -lgmp -rdynamic -ldl  -L../zlib -lz
../libcpp/libcpp.a   ../libiberty/libiberty.a ../libdecnumber/libdecnumber.a 
libbackend.a(cfgbuild.o): In function `find_many_sub_basic_blocks':
(.text+0x450): relocation truncated to fit: GPREL16 against symbol
`default_target_rtl' defined in .bss section in libbackend.a(emit-rtl.o)
libbackend.a(cfgbuild.o): In function `find_many_sub_basic_blocks':
(.text+0xdc4): relocation truncated to fit: GPREL16 against symbol
`default_target_rtl' defined in .bss section in libbackend.a(emit-rtl.o)
libbackend.a(cfgcleanup.o): In function `mark_effect':
(.text+0x3e4): relocation truncated to fit: GPREL16 against symbol
`default_target_rtl' defined in .bss section in libbackend.a(emit-rtl.o)
libbackend.a(cfgcleanup.o): In function `try_crossjump_to_edge.isra.24':
(.text+0x1f98): relocation truncated to fit: GPREL16 against symbol
`default_target_rtl' defined in .bss section in libbackend.a(emit-rtl.o)
libbackend.a(cfgcleanup.o): In function `cleanup_cfg':
(.text+0x4870): relocation truncated to fit: GPREL16 against symbol
`default_target_rtl' defined in .bss section in libbackend.a(emit-rtl.o)
libbackend.a(cfgcleanup.o): In function `cleanup_cfg':
(.text+0x4f94): relocation truncated to fit: GPREL16 against symbol
`default_target_rtl' defined in .bss section in libbackend.a(emit-rtl.o)
libbackend.a(combine.o): In function `can_combine_p.isra.17':
(.text+0xae28): relocation truncated to fit: GPREL16 against symbol
`default_target_rtl' defined in .bss section in libbackend.a(emit-rtl.o)
libbackend.a(combine.o): In function `combine_simplify_rtx':
(.text+0x10204): relocation truncated to fit: GPREL16 against symbol
`default_target_rtl' defined in .bss section in libbackend.a(emit-rtl.o)
libbackend.a(combine.o): In function `combine_simplify_rtx':
(.text+0x12640): relocation truncated to fit: GPREL16 against symbol
`default_target_rtl' defined in .bss section in libbackend.a(emit-rtl.o)
libbackend.a(combine.o): In function `simplify_if_then_else':
(.text+0x138f8): relocation truncated to fit: GPREL16 against symbol
`default_target_rtl' defined in .bss section in libbackend.a(emit-rtl.o)
libbackend.a(combine.o): In function `simplify_if_then_else':
(.text+0x13d08): additional relocation overflows omitted from the output
collect2: ld returned 1 exit status
gmake[3]: *** [lto1] Error 1
gmake[3]: Leaving directory `/space/uros/gcc-build/gcc'
gmake[2]: *** [all-stage2-gcc] Error 2
gmake[2]: Leaving directory `/space/uros/gcc-build'
gmake[1]: *** [stage2-bubble] Error 2
gmake[1]: Leaving directory `/space/uros/gcc-build'
gmake: *** [all] Error 2

It looks that "default_target_rtl" symbol can not be reached with GP relative
relocation anymore.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug bootstrap/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
@ 2011-01-09 13:47 ` ubizjak at gmail dot com
  2011-01-18 13:49 ` jakub at gcc dot gnu.org
                   ` (26 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: ubizjak at gmail dot com @ 2011-01-09 13:47 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Uros Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |alphaev68-unknown-linux-gnu
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2011.01.09 13:11:00
               Host|                            |alphaev68-unknown-linux-gnu
     Ever Confirmed|0                           |1
            Summary|gcc fails to bootstrap on   |[4.6 Regression] gcc fails
                   |alpha in stage2 with        |to bootstrap on alpha in
                   |"relocation truncated to    |stage2 with "relocation
                   |fit: GPREL16 against ..."   |truncated to fit: GPREL16
                   |                            |against ..."
   Target Milestone|---                         |4.6.0
              Build|                            |alphaev68-unknown-linux-gnu

--- Comment #1 from Uros Bizjak <ubizjak at gmail dot com> 2011-01-09 13:11:00 UTC ---
4.6 regression.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug bootstrap/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
  2011-01-09 13:47 ` [Bug bootstrap/47230] [4.6 Regression] " ubizjak at gmail dot com
@ 2011-01-18 13:49 ` jakub at gcc dot gnu.org
  2011-02-21 20:02 ` ubizjak at gmail dot com
                   ` (25 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-01-18 13:49 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
                 CC|                            |jakub at gcc dot gnu.org


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug bootstrap/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
  2011-01-09 13:47 ` [Bug bootstrap/47230] [4.6 Regression] " ubizjak at gmail dot com
  2011-01-18 13:49 ` jakub at gcc dot gnu.org
@ 2011-02-21 20:02 ` ubizjak at gmail dot com
  2011-03-07 19:08 ` [Bug target/47230] " belyshev at depni dot sinp.msu.ru
                   ` (24 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: ubizjak at gmail dot com @ 2011-02-21 20:02 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Uros Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

--- Comment #2 from Uros Bizjak <ubizjak at gmail dot com> 2011-02-21 19:47:01 UTC ---
Apparently fixed [1].

[1] http://gcc.gnu.org/ml/gcc-testresults/2011-02/msg02323.html


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (2 preceding siblings ...)
  2011-02-21 20:02 ` ubizjak at gmail dot com
@ 2011-03-07 19:08 ` belyshev at depni dot sinp.msu.ru
  2011-03-25 19:53 ` [Bug target/47230] [4.6/4.7 " jakub at gcc dot gnu.org
                   ` (23 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: belyshev at depni dot sinp.msu.ru @ 2011-03-07 19:08 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Serge Belyshev <belyshev at depni dot sinp.msu.ru> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |link-failure
             Status|RESOLVED                    |REOPENED
   Last reconfirmed|2011-01-09 13:11:00         |2011-03-07 19:05
                 CC|                            |belyshev at depni dot
                   |                            |sinp.msu.ru
          Component|bootstrap                   |target
         Resolution|FIXED                       |

--- Comment #3 from Serge Belyshev <belyshev at depni dot sinp.msu.ru> 2011-03-07 19:07:36 UTC ---
Bootstrap issue disappeared, but now linux kernel build fails with the same
error:

  ld  -static -N  --build-id -o .tmp_vmlinux1 -T arch/alpha/kernel/vmlinux.lds
arch/alpha/kernel/head.o  init/built-in.o --start-group  usr/built-in.o 
arch/alpha/kernel/built-in.o  arch/alpha/mm/built-in.o 
arch/alpha/math-emu/built-in.o  kernel/built-in.o  mm/built-in.o  fs/built-in.o
 ipc/built-in.o  security/built-in.o  crypto/built-in.o  block/built-in.o 
lib/lib.a  arch/alpha/lib/lib.a  lib/built-in.o  arch/alpha/lib/built-in.o 
drivers/built-in.o  sound/built-in.o  firmware/built-in.o  net/built-in.o
--end-group 
init/built-in.o: In function `do_one_initcall':
/home/ssb/src/linux/init/main.c:736: relocation truncated to fit: GPREL16
against symbol `initcall_debug' defined in .sbss section in init/built-in.o
/home/ssb/src/linux/init/main.c:746: relocation truncated to fit: GPREL16
against symbol `initcall_debug' defined in .sbss section in init/built-in.o
/home/ssb/src/linux/init/main.c:758: relocation truncated to fit: GPREL16
against symbol `initcall_debug' defined in .sbss section in init/built-in.o
init/built-in.o: In function `set_reset_devices':
/home/ssb/src/linux/init/main.c:197: relocation truncated to fit: GPREL16
against symbol `reset_devices' defined in .sbss section in init/built-in.o
init/built-in.o: In function `init_setup':
/home/ssb/src/linux/init/main.c:333: relocation truncated to fit: GPREL16
against `.sbss'
init/built-in.o: In function `rdinit_setup':
/home/ssb/src/linux/init/main.c:350: relocation truncated to fit: GPREL16
against `.sbss'
init/built-in.o: In function `unknown_bootoption':
/home/ssb/src/linux/init/main.c:296: relocation truncated to fit: GPREL16
against `.sbss'
/home/ssb/src/linux/init/main.c:299: relocation truncated to fit: GPREL16
against `.sbss'
/home/ssb/src/linux/init/main.c:304: relocation truncated to fit: GPREL16
against `.sbss'
/home/ssb/src/linux/init/main.c:305: relocation truncated to fit: GPREL16
against `.sbss'
/home/ssb/src/linux/init/main.c:314: additional relocation overflows omitted
from the output
make: *** [.tmp_vmlinux1] Error 1


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (3 preceding siblings ...)
  2011-03-07 19:08 ` [Bug target/47230] " belyshev at depni dot sinp.msu.ru
@ 2011-03-25 19:53 ` jakub at gcc dot gnu.org
  2011-04-29  8:37 ` ubizjak at gmail dot com
                   ` (22 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-03-25 19:53 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.0                       |4.6.1

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-03-25 19:51:38 UTC ---
GCC 4.6.0 is being released, adjusting target milestone.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (4 preceding siblings ...)
  2011-03-25 19:53 ` [Bug target/47230] [4.6/4.7 " jakub at gcc dot gnu.org
@ 2011-04-29  8:37 ` ubizjak at gmail dot com
  2011-04-29  9:40 ` mikpe at it dot uu.se
                   ` (21 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: ubizjak at gmail dot com @ 2011-04-29  8:37 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #5 from Uros Bizjak <ubizjak at gmail dot com> 2011-04-29 08:35:29 UTC ---
Unfortunately, the bootstrap on alphaev6-linux again fails with this message.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (5 preceding siblings ...)
  2011-04-29  8:37 ` ubizjak at gmail dot com
@ 2011-04-29  9:40 ` mikpe at it dot uu.se
  2011-04-29 14:02 ` ubizjak at gmail dot com
                   ` (20 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: mikpe at it dot uu.se @ 2011-04-29  9:40 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Mikael Pettersson <mikpe at it dot uu.se> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikpe at it dot uu.se

--- Comment #6 from Mikael Pettersson <mikpe at it dot uu.se> 2011-04-29 09:37:37 UTC ---
FWIW, I've never gotten that linkage failure on my alphaev6-linux machine, and
last week's snapshots (4.7-20110423, 4.6-20110422, and 4.5-20110421) all
bootstrapped fine on it.

I do have quite an old binutils (2.18.50.0.9-8.fc10 20080822).  I tried
binutils-2.21 once, but it regressed some gcc tls test so I ditched it. 
Haven't tried any other binutils versions yet.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (6 preceding siblings ...)
  2011-04-29  9:40 ` mikpe at it dot uu.se
@ 2011-04-29 14:02 ` ubizjak at gmail dot com
  2011-04-29 17:21 ` mikpe at it dot uu.se
                   ` (19 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: ubizjak at gmail dot com @ 2011-04-29 14:02 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #7 from Uros Bizjak <ubizjak at gmail dot com> 2011-04-29 14:01:55 UTC ---
(In reply to comment #6)
> FWIW, I've never gotten that linkage failure on my alphaev6-linux machine, and
> last week's snapshots (4.7-20110423, 4.6-20110422, and 4.5-20110421) all
> bootstrapped fine on it.

Can you please post your configure command?

> I do have quite an old binutils (2.18.50.0.9-8.fc10 20080822).  I tried
> binutils-2.21 once, but it regressed some gcc tls test so I ditched it. 
> Haven't tried any other binutils versions yet.

I have reported this problem to binutils and it was fixed by rth in post-2.21
SVN.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (7 preceding siblings ...)
  2011-04-29 14:02 ` ubizjak at gmail dot com
@ 2011-04-29 17:21 ` mikpe at it dot uu.se
  2011-04-29 17:53 ` ubizjak at gmail dot com
                   ` (18 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: mikpe at it dot uu.se @ 2011-04-29 17:21 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #8 from Mikael Pettersson <mikpe at it dot uu.se> 2011-04-29 17:17:48 UTC ---
(In reply to comment #7)
> (In reply to comment #6)
> > FWIW, I've never gotten that linkage failure on my alphaev6-linux machine, and
> > last week's snapshots (4.7-20110423, 4.6-20110422, and 4.5-20110421) all
> > bootstrapped fine on it.
> 
> Can you please post your configure command?

Sure:

/home/mikpe/gcc-4.7-20110423/configure --prefix=/home/mikpe/install47
--with-gmp=/home/mikpe/pkgs/linux-alpha/gmp-4.3.2
--with-mpfr=/home/mikpe/pkgs/linux-alpha/mpfr-2.4.2
--with-mpc=/home/mikpe/pkgs/linux-alpha/mpc-0.8.2 --disable-plugin
--disable-lto --disable-nls --enable-threads=posix --enable-checking=release
--disable-libmudflap --enable-languages=c,c++ --with-long-double-128
--with-cpu=ev6

> > I do have quite an old binutils (2.18.50.0.9-8.fc10 20080822).  I tried
> > binutils-2.21 once, but it regressed some gcc tls test so I ditched it. 
> > Haven't tried any other binutils versions yet.
> 
> I have reported this problem to binutils and it was fixed by rth in post-2.21
> SVN.

Do you have a reference, like a PR number or an approximate commit date?  I'd
like to backport this fix to my binutils 2.21 based branch.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (8 preceding siblings ...)
  2011-04-29 17:21 ` mikpe at it dot uu.se
@ 2011-04-29 17:53 ` ubizjak at gmail dot com
  2011-06-27 15:31 ` jakub at gcc dot gnu.org
                   ` (17 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: ubizjak at gmail dot com @ 2011-04-29 17:53 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #9 from Uros Bizjak <ubizjak at gmail dot com> 2011-04-29 17:52:24 UTC ---
(In reply to comment #8)

> > > I do have quite an old binutils (2.18.50.0.9-8.fc10 20080822).  I tried
> > > binutils-2.21 once, but it regressed some gcc tls test so I ditched it. 
> > > Haven't tried any other binutils versions yet.
> > 
> > I have reported this problem to binutils and it was fixed by rth in post-2.21
> > SVN.
> 
> Do you have a reference, like a PR number or an approximate commit date?  I'd
> like to backport this fix to my binutils 2.21 based branch.

http://sourceware.org/bugzilla/show_bug.cgi?id=11891

Maybe you should also backport an unrelated alpha fix:

http://sourceware.org/bugzilla/show_bug.cgi?id=12610


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (9 preceding siblings ...)
  2011-04-29 17:53 ` ubizjak at gmail dot com
@ 2011-06-27 15:31 ` jakub at gcc dot gnu.org
  2011-07-08 20:43 ` mattst88 at gmail dot com
                   ` (16 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-06-27 15:31 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.1                       |4.6.2

--- Comment #10 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-06-27 12:32:35 UTC ---
GCC 4.6.1 is being released.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (10 preceding siblings ...)
  2011-06-27 15:31 ` jakub at gcc dot gnu.org
@ 2011-07-08 20:43 ` mattst88 at gmail dot com
  2011-07-09  8:23 ` ubizjak at gmail dot com
                   ` (15 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: mattst88 at gmail dot com @ 2011-07-08 20:43 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Matt Turner <mattst88 at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mattst88 at gmail dot com

--- Comment #11 from Matt Turner <mattst88 at gmail dot com> 2011-07-08 20:42:37 UTC ---
gcc-4.6.1 fails to boostrap gcc-4.6.1 even with binutils-2.21.1 + fixes for
12608 and 12610 for me.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (11 preceding siblings ...)
  2011-07-08 20:43 ` mattst88 at gmail dot com
@ 2011-07-09  8:23 ` ubizjak at gmail dot com
  2011-07-09 20:56 ` mattst88 at gmail dot com
                   ` (14 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: ubizjak at gmail dot com @ 2011-07-09  8:23 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Uros Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |NEW
                 CC|                            |rth at gcc dot gnu.org

--- Comment #12 from Uros Bizjak <ubizjak at gmail dot com> 2011-07-09 08:22:18 UTC ---
I am using patch from URL [1] in my builds.  While not perfect, it works OK.

Since this is linker bug, I have added rth to CC in the hope that he has better
solution.

[1] http://gcc.gnu.org/ml/gcc-patches/2011-05/msg00022.html


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (12 preceding siblings ...)
  2011-07-09  8:23 ` ubizjak at gmail dot com
@ 2011-07-09 20:56 ` mattst88 at gmail dot com
  2011-10-26 17:14 ` jakub at gcc dot gnu.org
                   ` (13 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: mattst88 at gmail dot com @ 2011-07-09 20:56 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #13 from Matt Turner <mattst88 at gmail dot com> 2011-07-09 20:55:23 UTC ---
(In reply to comment #12)
> Since this is linker bug, I have added rth to CC in the hope that he has better
> solution.

Bug link is http://sources.redhat.com/bugzilla/show_bug.cgi?id=5276


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (13 preceding siblings ...)
  2011-07-09 20:56 ` mattst88 at gmail dot com
@ 2011-10-26 17:14 ` jakub at gcc dot gnu.org
  2012-03-01 14:46 ` jakub at gcc dot gnu.org
                   ` (12 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-10-26 17:14 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.2                       |4.6.3

--- Comment #14 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-10-26 17:13:16 UTC ---
GCC 4.6.2 is being released.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6/4.7 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (14 preceding siblings ...)
  2011-10-26 17:14 ` jakub at gcc dot gnu.org
@ 2012-03-01 14:46 ` jakub at gcc dot gnu.org
  2012-03-15 15:15 ` [Bug target/47230] [4.6 " ubizjak at gmail dot com
                   ` (11 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: jakub at gcc dot gnu.org @ 2012-03-01 14:46 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.3                       |4.6.4

--- Comment #15 from Jakub Jelinek <jakub at gcc dot gnu.org> 2012-03-01 14:37:58 UTC ---
GCC 4.6.3 is being released.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (15 preceding siblings ...)
  2012-03-01 14:46 ` jakub at gcc dot gnu.org
@ 2012-03-15 15:15 ` ubizjak at gmail dot com
  2012-04-11 20:52 ` mikpe at it dot uu.se
                   ` (10 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: ubizjak at gmail dot com @ 2012-03-15 15:15 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Uros Bizjak <ubizjak at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[4.6/4.7/4.8 Regression]    |[4.6 Regression] gcc fails
                   |gcc fails to bootstrap on   |to bootstrap on alpha in
                   |alpha in stage2 with        |stage2 with "relocation
                   |"relocation truncated to    |truncated to fit: GPREL16
                   |fit: GPREL16 against ..."   |against ..."

--- Comment #16 from Uros Bizjak <ubizjak at gmail dot com> 2012-03-15 14:17:23 UTC ---
gcc again bootstraps OK on 4.7 branch and 4.8 mainline.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (16 preceding siblings ...)
  2012-03-15 15:15 ` [Bug target/47230] [4.6 " ubizjak at gmail dot com
@ 2012-04-11 20:52 ` mikpe at it dot uu.se
  2012-04-12 10:09 ` mikpe at it dot uu.se
                   ` (9 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: mikpe at it dot uu.se @ 2012-04-11 20:52 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #17 from Mikael Pettersson <mikpe at it dot uu.se> 2012-04-11 20:48:54 UTC ---
With binutils-2.22 (vanilla) I'm unable to bootstrap gcc-4.6.3 on
alphaev6-unknown-linux, due to a bunch of 'relocation truncated to fit' errors.
 Applying the patch from #c12 allows gcc-4.6.3 to bootstrap, but that compiler
is unable to build a linux-3.3.0 kernel, the final vmlinux link step fails with
a bunch of 'relocation truncated to fit: GPREL16' errors .

gcc-4.4.7 + binutils-2.22 works.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (17 preceding siblings ...)
  2012-04-11 20:52 ` mikpe at it dot uu.se
@ 2012-04-12 10:09 ` mikpe at it dot uu.se
  2012-04-12 10:25 ` ubizjak at gmail dot com
                   ` (8 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: mikpe at it dot uu.se @ 2012-04-12 10:09 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #18 from Mikael Pettersson <mikpe at it dot uu.se> 2012-04-12 10:09:32 UTC ---
It seems to be triggered(*) by Uros' PR46533 patch in r166999:
http://gcc.gnu.org/viewcvs?view=revision&revision=166999

Repeat-by:
1. have cross tools to alpha-linux hosted on e.g. x86, mine has binutils-2.20.1
2. build gcc-4.6 r166998 as cross to alpha-linux
3. used the above to cross-build a linux-3.3.0 kernel, this works for me
4. repeat steps 2 and 3 with gcc-4.6 r166999, gcc builds ok but the kernel
build fails with the usual 'relocation truncated to fit: GPREL16 against ...'
errors

In my cross environment gcc 4.7 and 4.8 also fail to build a linux kernel, but
4.5.3 and 4.4.7 work.

(*) Presumably gcc triggers a bug in ld.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (18 preceding siblings ...)
  2012-04-12 10:09 ` mikpe at it dot uu.se
@ 2012-04-12 10:25 ` ubizjak at gmail dot com
  2013-04-12 16:17 ` jakub at gcc dot gnu.org
                   ` (7 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: ubizjak at gmail dot com @ 2012-04-12 10:25 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #19 from Uros Bizjak <ubizjak at gmail dot com> 2012-04-12 10:24:36 UTC ---
(In reply to comment #18)
> It seems to be triggered(*) by Uros' PR46533 patch in r166999:
> http://gcc.gnu.org/viewcvs?view=revision&revision=166999

I don't think that this patch has anything to do with GPREL16. The patch fixes
relocation on functions, where you have problems with symbol relocations.

> Repeat-by:
> 1. have cross tools to alpha-linux hosted on e.g. x86, mine has binutils-2.20.1
> 2. build gcc-4.6 r166998 as cross to alpha-linux
> 3. used the above to cross-build a linux-3.3.0 kernel, this works for me
> 4. repeat steps 2 and 3 with gcc-4.6 r166999, gcc builds ok but the kernel
> build fails with the usual 'relocation truncated to fit: GPREL16 against ...'
> errors

Just stick -Wl,--no-relax somewhere. This is standard practice to build a
kernel.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (19 preceding siblings ...)
  2012-04-12 10:25 ` ubizjak at gmail dot com
@ 2013-04-12 16:17 ` jakub at gcc dot gnu.org
  2014-07-26 15:11 ` uros at gcc dot gnu.org
                   ` (6 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-04-12 16:17 UTC (permalink / raw)
  To: gcc-bugs


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|4.6.4                       |4.7.0

--- Comment #20 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-04-12 16:17:20 UTC ---
The 4.6 branch has been closed, fixed in GCC 4.7.0.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (20 preceding siblings ...)
  2013-04-12 16:17 ` jakub at gcc dot gnu.org
@ 2014-07-26 15:11 ` uros at gcc dot gnu.org
  2014-07-26 15:18 ` uros at gcc dot gnu.org
                   ` (5 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: uros at gcc dot gnu.org @ 2014-07-26 15:11 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #21 from uros at gcc dot gnu.org ---
Author: uros
Date: Sat Jul 26 15:11:14 2014
New Revision: 213081

URL: https://gcc.gnu.org/viewcvs?rev=213081&root=gcc&view=rev
Log:
    PR target/47230
    * configure.ac (alpha*-*-linux*): Use mh-alpha-linux.
    * configure: Regenerate.

config/ChangeLog:

    PR target/47230
    * mh-alpha-linux: New file.


Added:
    trunk/config/mh-alpha-linux
Modified:
    trunk/ChangeLog
    trunk/config/ChangeLog
    trunk/configure
    trunk/configure.ac


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (21 preceding siblings ...)
  2014-07-26 15:11 ` uros at gcc dot gnu.org
@ 2014-07-26 15:18 ` uros at gcc dot gnu.org
  2014-07-26 15:24 ` uros at gcc dot gnu.org
                   ` (4 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: uros at gcc dot gnu.org @ 2014-07-26 15:18 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #22 from uros at gcc dot gnu.org ---
Author: uros
Date: Sat Jul 26 15:18:04 2014
New Revision: 213082

URL: https://gcc.gnu.org/viewcvs?rev=213082&root=gcc&view=rev
Log:
    PR target/47230
    * configure.ac (alpha*-*-linux*): Use mh-alpha-linux.
    * configure: Regenerate.

config/ChangeLog:

    PR target/47230
    * mh-alpha-linux: New file.


Added:
    branches/gcc-4_9-branch/config/mh-alpha-linux
Modified:
    branches/gcc-4_9-branch/ChangeLog
    branches/gcc-4_9-branch/config/ChangeLog
    branches/gcc-4_9-branch/configure
    branches/gcc-4_9-branch/configure.ac


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (22 preceding siblings ...)
  2014-07-26 15:18 ` uros at gcc dot gnu.org
@ 2014-07-26 15:24 ` uros at gcc dot gnu.org
  2014-07-26 15:39 ` ubizjak at gmail dot com
                   ` (3 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: uros at gcc dot gnu.org @ 2014-07-26 15:24 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #23 from uros at gcc dot gnu.org ---
Author: uros
Date: Sat Jul 26 15:23:33 2014
New Revision: 213083

URL: https://gcc.gnu.org/viewcvs?rev=213083&root=gcc&view=rev
Log:
    PR target/47230
    * configure.ac (alpha*-*-linux*): Use mh-alpha-linux.
    * configure: Regenerate.

config/ChangeLog:

    PR target/47230
    * mh-alpha-linux: New file.


Added:
    branches/gcc-4_8-branch/config/mh-alpha-linux
Modified:
    branches/gcc-4_8-branch/ChangeLog
    branches/gcc-4_8-branch/config/ChangeLog
    branches/gcc-4_8-branch/configure
    branches/gcc-4_8-branch/configure.ac


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (23 preceding siblings ...)
  2014-07-26 15:24 ` uros at gcc dot gnu.org
@ 2014-07-26 15:39 ` ubizjak at gmail dot com
  2015-02-25 20:59 ` uros at gcc dot gnu.org
                   ` (2 subsequent siblings)
  27 siblings, 0 replies; 29+ messages in thread
From: ubizjak at gmail dot com @ 2014-07-26 15:39 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #24 from Uroš Bizjak <ubizjak at gmail dot com> ---
Fixed (worked around) for real for 4.8.4, 4.9.2 and 4.10.
>From gcc-bugs-return-457145-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Sat Jul 26 16:29:46 2014
Return-Path: <gcc-bugs-return-457145-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 19375 invoked by alias); 26 Jul 2014 16:29:45 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 19340 invoked by uid 48); 26 Jul 2014 16:29:41 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/61077] _Atomic in the return type or argument types of main not diagnosed
Date: Sat, 26 Jul 2014 16:29:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.10.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: mpolacek at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.10.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-61077-4-BEYl3Pet1D@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-61077-4@http.gcc.gnu.org/bugzilla/>
References: <bug-61077-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-07/txt/msg01736.txt.bz2
Content-length: 145

https://gcc.gnu.org/bugzilla/show_bug.cgi?ida077

--- Comment #4 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Sure, sorry about that.


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (24 preceding siblings ...)
  2014-07-26 15:39 ` ubizjak at gmail dot com
@ 2015-02-25 20:59 ` uros at gcc dot gnu.org
  2015-02-25 21:06 ` ubizjak at gmail dot com
  2015-03-27 17:35 ` uros at gcc dot gnu.org
  27 siblings, 0 replies; 29+ messages in thread
From: uros at gcc dot gnu.org @ 2015-02-25 20:59 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #25 from uros at gcc dot gnu.org ---
Author: uros
Date: Wed Feb 25 19:59:31 2015
New Revision: 220990

URL: https://gcc.gnu.org/viewcvs?rev=220990&root=gcc&view=rev
Log:
    Revert:
    2014-07-26  Uros Bizjak  <ubizjak@gmail.com>

    PR target/47230
    * configure.ac (alpha*-*-linux*): Use mh-alpha-linux.
    * configure: Regenerate.

/config

    Revert:
    2014-07-26  Uros Bizjak  <ubizjak@gmail.com>

    PR target/47230
    * mh-alpha-linux: New file.

/gcc

    PR target/47230
    * doc/install.texi (Specific, alpha*-*-*): Document that binutils 2.25
    or newer are required.


Removed:
    trunk/config/mh-alpha-linux
Modified:
    trunk/ChangeLog
    trunk/config/ChangeLog
    trunk/configure
    trunk/configure.ac
    trunk/gcc/ChangeLog
    trunk/gcc/doc/install.texi


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (25 preceding siblings ...)
  2015-02-25 20:59 ` uros at gcc dot gnu.org
@ 2015-02-25 21:06 ` ubizjak at gmail dot com
  2015-03-27 17:35 ` uros at gcc dot gnu.org
  27 siblings, 0 replies; 29+ messages in thread
From: ubizjak at gmail dot com @ 2015-02-25 21:06 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #26 from Uroš Bizjak <ubizjak at gmail dot com> ---
(In reply to uros from comment #25)

The linker bug [1] was fixed in binutils 2.25 and GCC workaround was removed
for gcc 5.0.

[1] https://sourceware.org/bugzilla/show_bug.cgi?id=5276
>From gcc-bugs-return-478509-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Feb 25 20:10:09 2015
Return-Path: <gcc-bugs-return-478509-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 100743 invoked by alias); 25 Feb 2015 20:10:09 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 100650 invoked by uid 48); 25 Feb 2015 20:10:05 -0000
From: "jvdelisle at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug libfortran/65203] Document fall-back to read-only access
Date: Wed, 25 Feb 2015 21:08:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: libfortran
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: enhancement
X-Bugzilla-Who: jvdelisle at gcc dot gnu.org
X-Bugzilla-Status: RESOLVED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cc resolution
Message-ID: <bug-65203-4-aybbmXgzKa@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-65203-4@http.gcc.gnu.org/bugzilla/>
References: <bug-65203-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2015-02/txt/msg02841.txt.bz2
Content-length: 723

https://gcc.gnu.org/bugzilla/show_bug.cgi?ide203

Jerry DeLisle <jvdelisle at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |jvdelisle at gcc dot gnu.org
         Resolution|---                         |DUPLICATE

--- Comment #1 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> ---
This is the same issue as in PR65200.  One suggests documentation and some code
changes.  Making this as duplicate and will add documentation to the other.

*** This bug has been marked as a duplicate of bug 65200 ***


^ permalink raw reply	[flat|nested] 29+ messages in thread

* [Bug target/47230] [4.6 Regression] gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..."
  2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
                   ` (26 preceding siblings ...)
  2015-02-25 21:06 ` ubizjak at gmail dot com
@ 2015-03-27 17:35 ` uros at gcc dot gnu.org
  27 siblings, 0 replies; 29+ messages in thread
From: uros at gcc dot gnu.org @ 2015-03-27 17:35 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47230

--- Comment #27 from uros at gcc dot gnu.org ---
Author: uros
Date: Fri Mar 27 17:08:44 2015
New Revision: 221739

URL: https://gcc.gnu.org/viewcvs?rev=221739&root=gcc&view=rev
Log:
    Install back PR target/47230 fix (Revert the revert).

Added:
    trunk/config/mh-alpha-linux
Modified:
    trunk/ChangeLog
    trunk/config/ChangeLog
    trunk/configure
    trunk/configure.ac
    trunk/gcc/ChangeLog
    trunk/gcc/doc/install.texi


^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2015-03-27 17:09 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-09 13:17 [Bug bootstrap/47230] New: gcc fails to bootstrap on alpha in stage2 with "relocation truncated to fit: GPREL16 against ..." ubizjak at gmail dot com
2011-01-09 13:47 ` [Bug bootstrap/47230] [4.6 Regression] " ubizjak at gmail dot com
2011-01-18 13:49 ` jakub at gcc dot gnu.org
2011-02-21 20:02 ` ubizjak at gmail dot com
2011-03-07 19:08 ` [Bug target/47230] " belyshev at depni dot sinp.msu.ru
2011-03-25 19:53 ` [Bug target/47230] [4.6/4.7 " jakub at gcc dot gnu.org
2011-04-29  8:37 ` ubizjak at gmail dot com
2011-04-29  9:40 ` mikpe at it dot uu.se
2011-04-29 14:02 ` ubizjak at gmail dot com
2011-04-29 17:21 ` mikpe at it dot uu.se
2011-04-29 17:53 ` ubizjak at gmail dot com
2011-06-27 15:31 ` jakub at gcc dot gnu.org
2011-07-08 20:43 ` mattst88 at gmail dot com
2011-07-09  8:23 ` ubizjak at gmail dot com
2011-07-09 20:56 ` mattst88 at gmail dot com
2011-10-26 17:14 ` jakub at gcc dot gnu.org
2012-03-01 14:46 ` jakub at gcc dot gnu.org
2012-03-15 15:15 ` [Bug target/47230] [4.6 " ubizjak at gmail dot com
2012-04-11 20:52 ` mikpe at it dot uu.se
2012-04-12 10:09 ` mikpe at it dot uu.se
2012-04-12 10:25 ` ubizjak at gmail dot com
2013-04-12 16:17 ` jakub at gcc dot gnu.org
2014-07-26 15:11 ` uros at gcc dot gnu.org
2014-07-26 15:18 ` uros at gcc dot gnu.org
2014-07-26 15:24 ` uros at gcc dot gnu.org
2014-07-26 15:39 ` ubizjak at gmail dot com
2015-02-25 20:59 ` uros at gcc dot gnu.org
2015-02-25 21:06 ` ubizjak at gmail dot com
2015-03-27 17:35 ` uros at gcc dot gnu.org

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).