mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
ee9aac1f1c
Completely rewritten the Android build system using Python Co-Authored-By: 东灯 <43312495+Lampese@users.noreply.github.com> Co-Authored-By: Feng Yu <F3n67u@outlook.com> PR-URL: https://github.com/nodejs/node/pull/44207 Refs: https://github.com/nodejs/node/issues/36287 Reviewed-By: Feng Yu <F3n67u@outlook.com> Reviewed-By: Christian Clauss <cclauss@me.com>
36 lines
1.3 KiB
Bash
Executable File
36 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Locate an acceptable Python interpreter and then re-execute the script.
|
|
# Note that the mix of single and double quotes is intentional,
|
|
# as is the fact that the ] goes on a new line.
|
|
_=[ 'exec' '/bin/sh' '-c' '''
|
|
command -v python3.10 >/dev/null && exec python3.10 "$0" "$@"
|
|
command -v python3.9 >/dev/null && exec python3.9 "$0" "$@"
|
|
command -v python3.8 >/dev/null && exec python3.8 "$0" "$@"
|
|
command -v python3.7 >/dev/null && exec python3.7 "$0" "$@"
|
|
command -v python3.6 >/dev/null && exec python3.6 "$0" "$@"
|
|
command -v python3 >/dev/null && exec python3 "$0" "$@"
|
|
exec python "$0" "$@"
|
|
''' "$0" "$@"
|
|
]
|
|
del _
|
|
|
|
import sys
|
|
try:
|
|
from shutil import which
|
|
except ImportError:
|
|
from distutils.spawn import find_executable as which
|
|
|
|
print('Node.js android configure: Found Python {}.{}.{}...'.format(*sys.version_info))
|
|
acceptable_pythons = ((3, 10), (3, 9), (3, 8), (3, 7), (3, 6))
|
|
if sys.version_info[:2] in acceptable_pythons:
|
|
import android_configure
|
|
else:
|
|
python_cmds = ['python{}.{}'.format(*vers) for vers in acceptable_pythons]
|
|
sys.stderr.write('Please use {}.\n'.format(' or '.join(python_cmds)))
|
|
for python_cmd in python_cmds:
|
|
python_cmd_path = which(python_cmd)
|
|
if python_cmd_path and 'pyenv/shims' not in python_cmd_path:
|
|
sys.stderr.write('\t{} {}\n'.format(python_cmd_path, ' '.join(sys.argv[:1])))
|
|
sys.exit(1)
|