Switch to Python3 for bootstrapping.
This commit is contained in:
parent
2e5e3ce060
commit
af32a9790b
|
@ -29,12 +29,12 @@ $argn = $#ARGV + 1;
|
|||
print "Attempting to reconfigure...\n";
|
||||
my $conf_args = '--enable-optimize --no-color --symbol-files';
|
||||
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] python3 ../build/configure.py $conf_args`;
|
||||
} else {
|
||||
if ($^O =~ /MSWin/) {
|
||||
$result = `C:\\Python38\\Python.exe ..\\build\\configure.py $conf_args`;
|
||||
} else {
|
||||
$result = `CC=clang CXX=clang python ../build/configure.py $conf_args`;
|
||||
$result = `CC=clang CXX=clang python3 ../build/configure.py $conf_args`;
|
||||
}
|
||||
}
|
||||
print "$result\n";
|
||||
|
|
Loading…
Reference in New Issue
Block a user