bug-binutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug binutils/19020] New: objcopy interleave feature broken


From: ams at sourceware dot org
Subject: [Bug binutils/19020] New: objcopy interleave feature broken
Date: Tue, 29 Sep 2015 14:09:06 +0000

https://sourceware.org/bugzilla/show_bug.cgi?id=19020

            Bug ID: 19020
           Summary: objcopy interleave feature broken
           Product: binutils
           Version: 2.26 (HEAD)
            Status: NEW
          Severity: normal
          Priority: P2
         Component: binutils
          Assignee: unassigned at sourceware dot org
          Reporter: ams at sourceware dot org
  Target Milestone: ---

The recent fix for pr binutils/19005 broke the interleave feature.

Before the "fix":

$ echo -n abcdefgh > in
$ objcopy -I binary -O binary \
          --pad-to=10 --gap-fill=65 \
          --interleave=2 --interleave-width=1 --byte=0 \
          in out
$ xxd out
0000000: 6163 6567 4141 4141 4141                 acegAAAAAA


After@

$ objcopy -I binary -O binary \
          --pad-to=10 --gap-fill=65 \
          --interleave=2 --interleave-width=1 --byte=0 \
          in out
$ xxd out
0000000: 6163 0000 4141 4141 4141                 ac..AAAAAA
              ^^^^                                  ^^

-- 
You are receiving this mail because:
You are on the CC list for the bug.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]