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

View File

@ -212,7 +212,16 @@ class NuitkaDebugConfig(Options):
internal_graph: bool = False
# --trace-execution
trace_execution: bool = False
# --recompile-c-only
recompile_c_only: bool = False
# --generate-c-only
generate_c_only: bool = False
# --deployment
deployment: bool = False
# --no-deployment-flag=FLAG
deployment_flag: Optional[str] = None
# --experimental=FLAG
experimental: Optional[str] = None
class NuitkaTarget(Enum):