8000 Install debugger symbols (in their own directory) · postgrespro/postgres_cluster@b60ddff · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

< 8000 /div>
Appearance settings

Commit b60ddff

Browse files
committed
Install debugger symbols (in their own directory)
1 parent 4dd3365 commit b60ddff

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/tools/msvc/Install.pm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Install;
33
#
44
# Package that provides 'make install' functionality for msvc builds
55
#
6-
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.9 2007/04/04 18:45:59 adunstan Exp $
6+
# $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.10 2007/04/12 12:46:20 mha Exp $
77
#
88
use strict;
99
use warnings;
@@ -38,7 +38,7 @@ sub Install
3838
print "Installing for $conf\n";
3939

4040
EnsureDirectories($target, 'bin','lib','share','share/timezonesets','share/contrib','doc',
41-
'doc/contrib');
41+
'doc/contrib', 'symbols');
4242

4343
CopySolutionOutput($conf, $target);
4444
copy($target . '/lib/libpq.dll', $target . '/bin/libpq.dll');
@@ -162,6 +162,7 @@ sub CopySolutionOutput
162162
next;
163163
}
164164
copy("$conf\\$pf\\$pf.$ext","$target\\$dir\\$pf.$ext") || croak "Could not copy $pf.$ext\n";
165+
copy("$conf\\$pf\\$pf.pdb","$target\\symbols\\$pf.pdb") || croak "Could not copy $pf.pdb\n";
165166
print ".";
166167
}
167168
print "\n";

0 commit comments

Comments
 (0)
0