[Bug binutils/12964] Unportable use of sed in binutils/Makefile.am

2011-07-06 Thread marcus at mc dot pp.se
http://sourceware.org/bugzilla/show_bug.cgi?id=12964 --- Comment #1 from Marcus Comstedt 2011-07-06 10:50:19 UTC --- I suggest the following replacement: awk '/^program_transform_name=/ {print "program_transform_name=\"$(program_transform_name)\""; next} {print}' < $< > $@ Note that I also

[Bug binutils/12964] New: Unportable use of sed in binutils/Makefile.am

2011-07-05 Thread marcus at mc dot pp.se
http://sourceware.org/bugzilla/show_bug.cgi?id=12964 Summary: Unportable use of sed in binutils/Makefile.am Product: binutils Version: 2.21 Status: NEW Severity: normal Priority: P2 Component: binutils AssignedTo: un

[Bug ld/12763] [PATCH] Incorrect error when .tbss starts outside PT_LOAD segment

2011-05-20 Thread marcus at mc dot pp.se
http://sourceware.org/bugzilla/show_bug.cgi?id=12763 Marcus Comstedt changed: What|Removed |Added Status|ASSIGNED|WAITING --- Comment #13 from Marcus

[Bug ld/12763] [PATCH] Incorrect error when .tbss starts outside PT_LOAD segment

2011-05-19 Thread marcus at mc dot pp.se
http://sourceware.org/bugzilla/show_bug.cgi?id=12763 --- Comment #10 from Marcus Comstedt 2011-05-19 14:35:29 UTC --- No, I don't have Linux/x86 at all. -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on

[Bug ld/12763] [PATCH] Incorrect error when .tbss starts outside PT_LOAD segment

2011-05-19 Thread marcus at mc dot pp.se
http://sourceware.org/bugzilla/show_bug.cgi?id=12763 --- Comment #8 from Marcus Comstedt 2011-05-19 13:52:19 UTC --- The target in my case is PS3/powerpc64. I can provide the linker script if necessary. -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email --- You a

[Bug ld/12763] [PATCH] Incorrect error when .tbss starts outside PT_LOAD segment

2011-05-19 Thread marcus at mc dot pp.se
http://sourceware.org/bugzilla/show_bug.cgi?id=12763 --- Comment #6 from Marcus Comstedt 2011-05-19 10:12:29 UTC --- Ok. I'm afraid you might be right about breakage in objcopy with the patch; I tried strip and the resulting binary had incorrect file size for PT_TLS. :-( Although here I blame

[Bug ld/12763] [PATCH] Incorrect error when .tbss starts outside PT_LOAD segment

2011-05-18 Thread marcus at mc dot pp.se
http://sourceware.org/bugzilla/show_bug.cgi?id=12763 --- Comment #3 from Marcus Comstedt 2011-05-18 16:56:24 UTC --- @Nick: Thank you for looking at this. My test case is the following program: static __thread char baz=17; static __thread char foo[1024] __attribute__((aligned(1024))); int main

[Bug ld/12763] New: [PATCH] Incorrect error when .tbss starts outside PT_LOAD segment

2011-05-15 Thread marcus at mc dot pp.se
http://sourceware.org/bugzilla/show_bug.cgi?id=12763 Summary: [PATCH] Incorrect error when .tbss starts outside PT_LOAD segment Product: binutils Version: 2.20 Status: NEW Severity: normal Priority: P2 Co