We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87f844b commit 256898bCopy full SHA for 256898b
.vscode/launch.json
@@ -32,7 +32,7 @@
32
"program": "${workspaceFolder}/example-programs/winzig_zz.c_binary",
33
"stopAtEntry": false,
34
"cwd": "${workspaceRoot}",
35
- "externalConsole": false,
+ "externalConsole": true,
36
"MIMode": "lldb",
37
"sourceFileMap": {
38
".": "${workspaceFolder}/example-programs"
scripts/compile-and-run.sh
@@ -54,5 +54,6 @@ echo "Executing the" "$winzigc_prog_name"_binary:
54
55
"$winzigc_prog_path"_binary
56
57
-# Comment out the following line to keep the generated binary and llvm bitcode
58
-rm "$winzigc_prog_path".ll "$winzigc_prog_path"_binary
+if [ "$dbg_flag" = false ]; then
+ rm "$winzigc_prog_path".ll "$winzigc_prog_path"_binary
59
+fi
0 commit comments