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 8bf8c98 commit 0b468f2Copy full SHA for 0b468f2
tools/buildbot/bootstrap.pl
@@ -61,12 +61,12 @@
61
my $conf_args = join(' ', @conf_argv);
62
63
if ($argn > 0 && $^O !~ /MSWin/) {
64
- $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`;
65
} else {
66
if ($^O =~ /MSWin/) {
67
$result = `C:\\Python38\\Python.exe ..\\build\\configure.py $conf_args`;
68
69
- $result = `CC=clang CXX=clang python ../build/configure.py $conf_args`;
+ $result = `CC=clang CXX=clang python3 ../build/configure.py $conf_args`;
70
}
71
72
print "$result\n";
0 commit comments