This commit is contained in:
shenjack 2023-09-21 23:28:42 +08:00
parent 09cd1756a9
commit 36ce1b9ea0
Signed by: shenjack
GPG Key ID: 7B1134A979775551

View File

@ -179,7 +179,7 @@ class NuitkaBinaryInfo(Options):
class NuitkaOutputConfig(Options):
"""
nuitka 构建的输出信息
nuitka 构建的选项
nuitka build output information
"""
name = 'Nuitka Output Config'
@ -194,6 +194,14 @@ class NuitkaOutputConfig(Options):
# --no-pyo-file
no_pyo_file: bool = False
class NuitkaDebugConfig(Options):
"""
nuitka 构建的调试选项
nuikta build debug information
"""
name = 'Nuitka Debug Config'
# --debug
debug: bool = False
# --unstripped
@ -206,6 +214,7 @@ class NuitkaOutputConfig(Options):
trace_execution: bool = False
class NuitkaTarget(Enum):
"""
用于指定 nuitka 构建的目标