From e93a818489e4fddef04fff98708a741713fb370e Mon Sep 17 00:00:00 2001 From: jkratoch <> Date: Sat, 2 Oct 2010 15:58:19 +0000 Subject: [PATCH] Extract `.GCC.command.line'. --- bin/gcc-command-line | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 bin/gcc-command-line diff --git a/bin/gcc-command-line b/bin/gcc-command-line new file mode 100755 index 0000000..5e756b9 --- /dev/null +++ b/bin/gcc-command-line @@ -0,0 +1,4 @@ +#! /bin/sh +for i in "$@";do + objcopy -O binary -j .GCC.command.line --set-section-flags .GCC.command.line=A --change-section-address .GCC.command.line=0 "$i" /proc/self/fd/1|tr '\0' ' '|sed 's/ $//';echo +done -- 1.8.3.1