Add --symbol-files option to AMBuild configure.

This commit is contained in:
Scott Ehlert 2014-05-17 15:05:58 -05:00
parent 1143b3f56f
commit 1a89edec47

View File

@ -27,7 +27,7 @@ chdir('OUTPUT');
my ($result, $argn); my ($result, $argn);
$argn = $#ARGV + 1; $argn = $#ARGV + 1;
print "Attempting to reconfigure...\n"; print "Attempting to reconfigure...\n";
my $conf_args = '--enable-optimize --breakpad-dump --no-color'; my $conf_args = '--enable-optimize --breakpad-dump --no-color --symbol-files';
if ($argn > 0 && $^O !~ /MSWin/) { if ($argn > 0 && $^O !~ /MSWin/) {
$result = `CC=$ARGV[0] CXX=$ARGV[0] python ../build/configure.py $conf_args`; $result = `CC=$ARGV[0] CXX=$ARGV[0] python ../build/configure.py $conf_args`;
} else { } else {