Skip to content

Commit 40f7b9e

Browse files
committed
Release builds generate different strangely formatted export names
for local symbols, that shouldn't be exported. This patch excludes them, cutting down about 10,000 exported symbols and decreasing the binary size by 20%.
1 parent 63735ca commit 40f7b9e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tools/msvc/gendef.pl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Script that generates a .DEF file for all objects in a directory
44
#
5-
# $PostgreSQL: pgsql/src/tools/msvc/gendef.pl,v 1.5 2007/03/17 14:01:01 mha Exp $
5+
# $PostgreSQL: pgsql/src/tools/msvc/gendef.pl,v 1.6 2007/05/03 14:04:03 mha Exp $
66
#
77

88
die "Usage: gendef.pl <modulepath>\n" unless ($ARGV[0] =~ /\\([^\\]+$)/);
@@ -36,6 +36,7 @@
3636
next if $pieces[6] =~ /NULL_THUNK_DATA$/;
3737
next if $pieces[6] =~ /^__IMPORT_DESCRIPTOR/;
3838
next if $pieces[6] =~ /^__NULL_IMPORT/;
39+
next if $pieces[6] =~ /^\?\?_C/;
3940

4041
push @def, $pieces[6];
4142
}

0 commit comments

Comments
 (0)