Difficult-Rocket/nuitka_build.py

47 lines
1.3 KiB
Python
Raw Normal View History

2023-06-09 15:10:15 +08:00
# -------------------------------
# Difficult Rocket
# Copyright © 2020-2023 by shenjackyuanjie 3695888@qq.com
# All rights reserved
# -------------------------------
2023-06-09 16:57:26 +08:00
import sys
import time
2023-06-09 15:10:15 +08:00
import subprocess
from libs.utils import nuitka
if __name__ == '__main__':
compiler = nuitka.Status()
2023-06-09 16:57:26 +08:00
# 修改 python 执行文件 为 运行时的 python
compiler.python_cmd = sys.executable
# 检测 --output xx 参数
if '--output' in sys.argv:
# 输入的是输出目录
compiler.output_path = sys.argv[sys.argv.index('--output') + 1]
sys.argv.remove('--output')
sys.argv.remove(compiler.output_path)
print(compiler.output_path)
2023-06-09 15:40:30 +08:00
print(compiler)
print(compiler.gen_subprocess_cmd())
2023-06-09 15:10:15 +08:00
2023-06-09 16:57:26 +08:00
# 确认是否需要编译
# 如果包含 -y 参数 则直接编译
if ('-y' or '-n') not in sys.argv:
while (do_compile := input('Do you want to compile this file? (y/n) ')) not in ['y', 'n']:
pass
elif '-y' in sys.argv:
do_compile = 'y'
else:
do_compile = 'n'
if do_compile == 'y':
# 编译
start_time = time.time_ns()
subprocess.run(compiler.gen_subprocess_cmd())
print('Compile Done!')
print(f'Compile Time: {time.time_ns() - start_time} ns ({(time.time_ns() - start_time) / 1000000000} s)')