Re: [PATCH] Fix for linker build ID in Fedora 8

2007-12-13 Thread Pavel Roskin
Quoting Robert Millan <[EMAIL PROTECTED]>: Is this fixed now? Yes, it's fixed now. Binaries for the target have build ID stripped. Native binaries have build ID, as it was asked by Lubomir. Everything compiles out-of-box with no extra options. Sorry if it was unclear. -- Regards, Pav

Re: [PATCH] Fix for linker build ID in Fedora 8

2007-12-13 Thread Pavel Roskin
Quoting Robert Millan <[EMAIL PROTECTED]>: Is this fixed now? P.S. Actually, I realize now that the fix I applied wasn't the best approach. The issue is with objcopy, not with ld, and should be addressed with objcopy flags. It can be gone with objcopy flags (-R .note.gnu.build-id) wit

Re: [PATCH] Fix for linker build ID in Fedora 8

2007-12-13 Thread Bean
Hi, In fact, i would prefer to use linker script to solve this problem. Linker script direct the link process, you can combine the sections in any way you want. For example, the following linker script: SECTIONS { .=0x8000 .text : { *(.text) } } sho

Re: [PATCH] Fix for linker build ID in Fedora 8

2007-12-13 Thread Pavel Roskin
Quoting Bean <[EMAIL PROTECTED]>: Hi, In fact, i would prefer to use linker script to solve this problem. OK, one approach would be to have an equivalent to "--build-id=none" that would work with all versions of ld. That would be a nice simplification, but it would still be working aroun