Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2007-11-08 17:36:49 +0300
committerChristopher Faylor <me@cgf.cx>2007-11-08 17:36:49 +0300
commita3ba550800f861f5bef0079f6bb052a5a9575cc6 (patch)
tree6c004ba70c764e46fc2da2c62ef85c54d20a41e3 /winsup/cygwin/dllfixdbg
parent75a1688a39f13c03cae53c7c5cc9deef44a34353 (diff)
* dllfixdbg: Eliminate extra objcopy step.
Diffstat (limited to 'winsup/cygwin/dllfixdbg')
-rwxr-xr-xwinsup/cygwin/dllfixdbg3
1 files changed, 1 insertions, 2 deletions
diff --git a/winsup/cygwin/dllfixdbg b/winsup/cygwin/dllfixdbg
index 47ec27169..f97be0ca6 100755
--- a/winsup/cygwin/dllfixdbg
+++ b/winsup/cygwin/dllfixdbg
@@ -16,8 +16,7 @@ my $objdump = shift;
my @objcopy = ((shift));
my $dll = shift;
my $dbg = shift;
-xit 0, @objcopy, '--only-keep-debug', $dll, $dbg;
-xit 0, @objcopy, '-R', '.gnu_debuglink_overlay', $dbg;
+xit 0, @objcopy, '-R', '.gnu_debuglink_overlay', '--only-keep-debug', $dll, $dbg;
xit 0, @objcopy, '-g', '--add-gnu-debuglink=' . $dbg, $dll;
open(OBJDUMP, '-|', "$objdump --headers $dll");
my %section;