diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 07:01:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-11 07:01:53 +0000 |
commit | 53de26f11b161d5d94e06e1b6c24430e6a8a674d (patch) | |
tree | bcddddedd6edfd668e84c5d170d50d5b5e0d1fc4 /TODO | |
parent | ignore compiled programs (diff) | |
download | pax-utils-53de26f11b161d5d94e06e1b6c24430e6a8a674d.tar.gz pax-utils-53de26f11b161d5d94e06e1b6c24430e6a8a674d.tar.bz2 pax-utils-53de26f11b161d5d94e06e1b6c24430e6a8a674d.zip |
should fix align warnings on ia64
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1,3 +1,16 @@ REQUESTS ---------- <psm> feature request for pax-utils, find cause of GNU_STACK = RWX, especially if PAX_FLAGS = E (nested function ,,,) + + + + +Fix these warnings when building on ia64: +scanelf.c: In function `scanelf_file_textrel': +scanelf.c:241: warning: cast increases required alignment of target type +scanelf.c:242: warning: cast increases required alignment of target type +due to: + dyn = DYN ## B (elf->data + offset); \ + rel = REL ## B (elf->data + EGET(shdr[s].sh_offset)); \ + rela = RELA ## B (elf->data + EGET(shdr[s].sh_offset)); \ + sym = SYM ## B (elf->data + EGET(symtab->sh_offset)); \ |