We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f92e60a commit 00b769eCopy full SHA for 00b769e
support/buildbot/bootstrap.pl
@@ -29,12 +29,12 @@
29
print "Attempting to reconfigure...\n";
30
my $conf_args = '--enable-optimize --no-color --symbol-files';
31
if ($argn > 0 && $^O !~ /MSWin/) {
32
- $result = `CC=$ARGV[0] CXX=$ARGV[0] python ../build/configure.py $conf_args`;
+ $result = `CC=$ARGV[0] CXX=$ARGV[0] python3 ../build/configure.py $conf_args`;
33
} else {
34
if ($^O =~ /MSWin/) {
35
$result = `C:\\Python27\\Python.exe ..\\build\\configure.py $conf_args`;
36
37
- $result = `CC=clang CXX=clang python ../build/configure.py $conf_args`;
+ $result = `CC=clang CXX=clang python3 ../build/configure.py $conf_args`;
38
}
39
40
print "$result\n";
0 commit comments