split
This commit is contained in:
parent
09cd1756a9
commit
36ce1b9ea0
@ -179,7 +179,7 @@ class NuitkaBinaryInfo(Options):
|
|||||||
|
|
||||||
class NuitkaOutputConfig(Options):
|
class NuitkaOutputConfig(Options):
|
||||||
"""
|
"""
|
||||||
nuitka 构建的输出信息
|
nuitka 构建的选项
|
||||||
nuitka build output information
|
nuitka build output information
|
||||||
"""
|
"""
|
||||||
name = 'Nuitka Output Config'
|
name = 'Nuitka Output Config'
|
||||||
@ -194,6 +194,14 @@ class NuitkaOutputConfig(Options):
|
|||||||
# --no-pyo-file
|
# --no-pyo-file
|
||||||
no_pyo_file: bool = False
|
no_pyo_file: bool = False
|
||||||
|
|
||||||
|
|
||||||
|
class NuitkaDebugConfig(Options):
|
||||||
|
"""
|
||||||
|
nuitka 构建的调试选项
|
||||||
|
nuikta build debug information
|
||||||
|
"""
|
||||||
|
name = 'Nuitka Debug Config'
|
||||||
|
|
||||||
# --debug
|
# --debug
|
||||||
debug: bool = False
|
debug: bool = False
|
||||||
# --unstripped
|
# --unstripped
|
||||||
@ -206,6 +214,7 @@ class NuitkaOutputConfig(Options):
|
|||||||
trace_execution: bool = False
|
trace_execution: bool = False
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class NuitkaTarget(Enum):
|
class NuitkaTarget(Enum):
|
||||||
"""
|
"""
|
||||||
用于指定 nuitka 构建的目标
|
用于指定 nuitka 构建的目标
|
||||||
|
Loading…
Reference in New Issue
Block a user