[Bug binutils/12290] Binutils dies with compiler error on Altix ICE 4700 with GCC 4.4.1

2010-12-06 Thread hjl.tools at gmail dot com
http://sourceware.org/bugzilla/show_bug.cgi?id=12290

H.J. Lu  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID

--- Comment #2 from H.J. Lu  2010-12-07 03:43:29 
UTC ---
Invalid.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug gas/12269] unknown-z80-coff: Incorrect assembly of indexed register offsets from equ declarations

2010-12-06 Thread cvs-commit at gcc dot gnu.org
http://sourceware.org/bugzilla/show_bug.cgi?id=12269

--- Comment #2 from cvs-commit at gcc dot gnu.org  2010-12-06 23:06:03 UTC ---
CVSROOT:/cvs/src
Module name:src
Branch: binutils-2_21-branch
Changes by:arno...@sourceware.org2010-12-06 23:05:58

Modified files:
gas/config : tc-z80.c 
gas/testsuite/gas/z80: z80.exp 
gas: ChangeLog 
Added files:
gas/testsuite/gas/z80: atend.d atend.s 

Log message:
Backport from trunk for PR gas/12269
* config/tc-z80.c (emit_mx, emit_ldxhl): Do not use
symbol_get_value_expression on a symbol that may not yet have
a value.
* testsuite/gas/z80/atend.s: New file, test case for bug 12269,
provided by Chris Smith.
* testsuite/gas/z80/atend.d: New file, expected results for atend.s.
* testsuite/gas/z80/z80.exp: Run new test case.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gas/config/tc-z80.c.diff?cvsroot=src&only_with_tag=binutils-2_21-branch&r1=1.11&r2=1.11.2.1
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gas/testsuite/gas/z80/atend.d.diff?cvsroot=src&only_with_tag=binutils-2_21-branch&r1=NONE&r2=1.1.2.1
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gas/testsuite/gas/z80/atend.s.diff?cvsroot=src&only_with_tag=binutils-2_21-branch&r1=NONE&r2=1.1.2.1
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gas/testsuite/gas/z80/z80.exp.diff?cvsroot=src&only_with_tag=binutils-2_21-branch&r1=1.7&r2=1.7.2.1
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gas/ChangeLog.diff?cvsroot=src&only_with_tag=binutils-2_21-branch&r1=1.4320.2.12&r2=1.4320.2.13

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/12291] "ld -r" doesn't work with mixed IR/non-IR objects

2010-12-06 Thread hjl.tools at gmail dot com
http://sourceware.org/bugzilla/show_bug.cgi?id=12291

--- Comment #1 from H.J. Lu  2010-12-06 23:01:17 
UTC ---
One approach

--
We generate a prog.o that contains an object that is the relocation of real
foo.o and main.o (used if prog.o is linked without IR support), that also
contains IR for main.o, and within the IR the object code for main.o.  So the
interesting case is when the relocatable object is again compiled in such a way
that the IR is read out from prog.o.  The Intel compiler will take the IR from
prog.o, and compile it with any other IR present in archives or other objects
(none in this particular case), and will create a real object from the IR, this
is then added to a list of objects that the driver will pass to the linker
along with the object code for main.o which the compiler extracts to a new
temporary object that is added to the list of objects.
--

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug binutils/12290] Binutils dies with compiler error on Altix ICE 4700 with GCC 4.4.1

2010-12-06 Thread tcortese at hpti dot com
http://sourceware.org/bugzilla/show_bug.cgi?id=12290

--- Comment #1 from Tom Cortese  2010-12-06 22:37:19 
UTC ---
Sorry about this -- please ignore this bug request.

It appears to be a disk quota issue...

Thanks,

 -Tom Cortese

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/12291] New: "ld -r" doesn't work with mixed IR/non-IR objects

2010-12-06 Thread hjl.tools at gmail dot com
http://sourceware.org/bugzilla/show_bug.cgi?id=12291

   Summary: "ld -r" doesn't work with mixed IR/non-IR objects
   Product: binutils
   Version: 2.22 (HEAD)
Status: NEW
  Severity: normal
  Priority: P2
 Component: ld
AssignedTo: unassig...@sources.redhat.com
ReportedBy: hjl.to...@gmail.com


[...@gnu-6 pr-1]$ cat foo.c
#include 

void foo(void)
{
  printf ("hello foo\n");
}
[...@gnu-6 pr-1]$ cat main.c
extern void foo(void);

int main(void)
{
  foo();
  return 0;
}
[...@gnu-6 pr-1]$ make
/usr/gcc-4.6/bin/gcc -B./ -c -O -flto -fuse-linker-plugin main.c -o main.o
/usr/gcc-4.6/bin/gcc -B./ -c -O foo.c -o foo.o
./ld -r -o prog.o main.o foo.o
/usr/gcc-4.6/bin/gcc -B./ -flto -fuse-linker-plugin prog.o -o prog
/tmp/ccAWLRVh.ltrans0.ltrans.o: In function `main':
ccAWLRVh.ltrans0.o:(.text.startup+0x5): undefined reference to `foo'
collect2: ld returned 1 exit status
make: *** [prog] Error 1
[...@gnu-6 pr-1]$

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug binutils/12290] New: Binutils dies with compiler error on Altix ICE 4700 with GCC 4.4.1

2010-12-06 Thread tcortese at hpti dot com
http://sourceware.org/bugzilla/show_bug.cgi?id=12290

   Summary: Binutils dies with compiler error on Altix ICE 4700
with GCC 4.4.1
   Product: binutils
   Version: 2.20
Status: NEW
  Severity: normal
  Priority: P2
 Component: binutils
AssignedTo: unassig...@sources.redhat.com
ReportedBy: tcort...@hpti.com


I am trying to build the GNU binutils version 2.20 as a prerequisite for the
Scalasca performance analysis tools on our SGI Altix ICE 4700 machine.  The
only GNU compilers that I am aware of are GCC 4.4.1, and the binutils package
won't build (all looks fine up to this point; I can send entire output if that
would help):

Thanks,

   -Tom Cortese

...
gcc -DHAVE_CONFIG_H -I.  -I. -I. -I../bfd -I./config -I./../include -I./..
-I./../bfd
-DLOCALEDIR="\"/app2/comenv/ALTIX4700/pkgs/binutils-2.20/share/locale\""  -W
-Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT dw2gencfi.o
-MD -MP -MF .deps/dw2gencfi.Tpo -c -o dw2gencfi.o dw2gencfi.c
mv -f .deps/dw2gencfi.Tpo .deps/dw2gencfi.Po
gcc -DHAVE_CONFIG_H -I.  -I. -I. -I../bfd -I./config -I./../include -I./..
-I./../bfd
-DLOCALEDIR="\"/app2/comenv/ALTIX4700/pkgs/binutils-2.20/share/locale\""  -W
-Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -MT ecoff.o -MD
-MP -MF .deps/ecoff.Tpo -c -o ecoff.o ecoff.c
mv -f .deps/ecoff.Tpo .deps/ecoff.Po
mv: cannot move `.deps/ecoff.Tpo' to `.deps/ecoff.Po': No such file or
directory
make[4]: *** [ecoff.o] Error 1
make[4]: Leaving directory `/aloe/app/comenv/ALTIX4700/pkgs/binutils-2.20/gas'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/aloe/app/comenv/ALTIX4700/pkgs/binutils-2.20/gas'
make[2]: *** [all] Error 2
make[2]: Leaving directory `/aloe/app/comenv/ALTIX4700/pkgs/binutils-2.20/gas'
make[1]: *** [all-gas] Error 2
make[1]: Leaving directory `/aloe/app/comenv/ALTIX4700/pkgs/binutils-2.20'
make: *** [all] Error 2
hawk-0:/app2/comenv/ALTIX4700/pkgs/binutils-2.20/ uname -a
Linux hawk-0 2.6.16.60-0.66.1-default #1 SMP Fri May 28 12:10:21 UTC 2010 ia64
ia64 ia64 GNU/Linux
hawk-0:/app2/comenv/ALTIX4700/pkgs/binutils-2.20/ module list
Currently Loaded Modulefiles:
  1) GCC/gcc4.4.1
hawk-0:/app2/comenv/ALTIX4700/pkgs/binutils-2.20/

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug binutils/12288] No newline at the end of diagnostic messages in ld/plugin.c and bfd/plugin.c

2010-12-06 Thread cvs-commit at gcc dot gnu.org
http://sourceware.org/bugzilla/show_bug.cgi?id=12288

--- Comment #6 from cvs-commit at gcc dot gnu.org  2010-12-06 21:47:46 UTC ---
CVSROOT:/cvs/src
Module name:src
Changes by:h...@sourceware.org2010-12-06 21:47:44

Modified files:
ld : ChangeLog plugin.c 

Log message:
Don't add the trailing `\n' for LDPL_ERROR.

2010-12-06  H.J. Lu  

PR ld/12288
* plugin.c (message): Don't add the trailing `\n' for
LDPL_ERROR.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/ChangeLog.diff?cvsroot=src&r1=1.2250&r2=1.2251
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/plugin.c.diff?cvsroot=src&r1=1.18&r2=1.19

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug binutils/12288] No newline at the end of diagnostic messages in ld/plugin.c and bfd/plugin.c

2010-12-06 Thread cvs-commit at gcc dot gnu.org
http://sourceware.org/bugzilla/show_bug.cgi?id=12288

--- Comment #5 from cvs-commit at gcc dot gnu.org  2010-12-06 20:59:23 UTC ---
CVSROOT:/cvs/src
Module name:src
Changes by:h...@sourceware.org2010-12-06 20:59:20

Modified files:
ld : ChangeLog testplug.c 

Log message:
Remove the trailing `\n' from TV_MESSAGE.

2010-12-06  H.J. Lu  

PR ld/12288
* testplug.c: Remove the trailing `\n' from TV_MESSAGE.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/ChangeLog.diff?cvsroot=src&r1=1.2249&r2=1.2250
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/testplug.c.diff?cvsroot=src&r1=1.1&r2=1.2

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug binutils/12288] No newline at the end of diagnostic messages in ld/plugin.c and bfd/plugin.c

2010-12-06 Thread cvs-commit at gcc dot gnu.org
http://sourceware.org/bugzilla/show_bug.cgi?id=12288

--- Comment #4 from cvs-commit at gcc dot gnu.org  2010-12-06 20:25:54 UTC ---
CVSROOT:/cvs/src
Module name:src
Changes by:h...@sourceware.org2010-12-06 20:25:50

Modified files:
bfd: ChangeLog plugin.c 
ld : ChangeLog plugin.c 

Log message:
Use putchar for the trailing `\n' in plugin message.

bfd/

2010-12-06  Dmitry Gorbachev  

PR ld/12288
* plugin.c (message): Add putchar for the trailing `\n'.

ld/

2010-12-06  Dmitry Gorbachev  

PR ld/12288
* plugin.c (message): Use putchar for the trailing `\n'.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/ChangeLog.diff?cvsroot=src&r1=1.5204&r2=1.5205
http://sourceware.org/cgi-bin/cvsweb.cgi/src/bfd/plugin.c.diff?cvsroot=src&r1=1.9&r2=1.10
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/ChangeLog.diff?cvsroot=src&r1=1.2248&r2=1.2249
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/plugin.c.diff?cvsroot=src&r1=1.17&r2=1.18

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug binutils/12288] No newline at the end of diagnostic messages in ld/plugin.c and bfd/plugin.c

2010-12-06 Thread d.g.gorbachev at gmail dot com
http://sourceware.org/bugzilla/show_bug.cgi?id=12288

--- Comment #3 from Dmitry Gorbachev  
2010-12-06 20:15:44 UTC ---
Created attachment 5144
  --> http://sourceware.org/bugzilla/attachment.cgi?id=5144
patch

It was not quite correctly fixed

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug gas/12287] C++ throws fail when using latest GNU assembler on IA64

2010-12-06 Thread ma...@linux-mips.org
http://sourceware.org/bugzilla/show_bug.cgi?id=12287

Maciej W. Rozycki  changed:

   What|Removed |Added

 Status|WAITING |RESOLVED
 CC||ma...@linux-mips.org
 Resolution||DUPLICATE

--- Comment #2 from Maciej W. Rozycki  2010-12-06 
17:33:43 UTC ---


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

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug gas/12282] .note.GNU-stack is referenced in .ARM.exidx

2010-12-06 Thread ma...@linux-mips.org
http://sourceware.org/bugzilla/show_bug.cgi?id=12282

Maciej W. Rozycki  changed:

   What|Removed |Added

 CC||sje at cup dot hp.com

--- Comment #3 from Maciej W. Rozycki  2010-12-06 
17:33:43 UTC ---
*** Bug 12287 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/12289] Plugin's cleanup hook should be probably registered with xatexit()

2010-12-06 Thread hjl.tools at gmail dot com
http://sourceware.org/bugzilla/show_bug.cgi?id=12289

H.J. Lu  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED

--- Comment #6 from H.J. Lu  2010-12-06 12:47:27 
UTC ---
Fixed.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/12289] Plugin's cleanup hook should be probably registered with xatexit()

2010-12-06 Thread cvs-commit at gcc dot gnu.org
http://sourceware.org/bugzilla/show_bug.cgi?id=12289

--- Comment #5 from cvs-commit at gcc dot gnu.org  2010-12-06 12:44:55 UTC ---
CVSROOT:/cvs/src
Module name:src
Changes by:h...@sourceware.org2010-12-06 12:44:51

Modified files:
ld : ChangeLog ldmain.c plugin.c plugin.h 

Log message:
Call xatexit with plugin_call_cleanup.

2010-12-06  H.J. Lu  
Dmitry Gorbachev  

PR ld/12289
* ldmain.c (main): Don't call plugin_call_cleanup.

* plugin.c (plugin_call_cleanup): Make it static.
(message): Don't call plugin_call_cleanup.
(plugin_load_plugins): Call xatexit with plugin_call_cleanup.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/ChangeLog.diff?cvsroot=src&r1=1.2247&r2=1.2248
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/ldmain.c.diff?cvsroot=src&r1=1.146&r2=1.147
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/plugin.c.diff?cvsroot=src&r1=1.16&r2=1.17
http://sourceware.org/cgi-bin/cvsweb.cgi/src/ld/plugin.h.diff?cvsroot=src&r1=1.4&r2=1.5

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/12289] Plugin's cleanup hook should be probably registered with xatexit()

2010-12-06 Thread d.g.gorbachev at gmail dot com
http://sourceware.org/bugzilla/show_bug.cgi?id=12289

--- Comment #4 from Dmitry Gorbachev  
2010-12-06 09:22:34 UTC ---
Created attachment 5143
  --> http://sourceware.org/bugzilla/attachment.cgi?id=5143
Patch with xatexit()

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils


[Bug ld/12289] Plugin's cleanup hook should be probably registered with xatexit()

2010-12-06 Thread d.g.gorbachev at gmail dot com
http://sourceware.org/bugzilla/show_bug.cgi?id=12289

Dmitry Gorbachev  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |

--- Comment #3 from Dmitry Gorbachev  
2010-12-06 09:20:50 UTC ---
Still fails on testcase from bug 12277.

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
bug-binutils mailing list
bug-binutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-binutils