Fix build script not compiling with debug symbols

This commit is contained in:
kayomn 2023-02-18 03:38:22 +00:00
parent d5b4281d36
commit a9e0588878
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ cache_path = "./cache/"
if not(os.path.exists(cache_path)):
os.mkdir(cache_path)
compile_command = f"clang++ -std=c++20 -fno-exceptions -fmodules -fprebuilt-module-path=./cache"
compile_command = f"clang++ -g -std=c++20 -fno-exceptions -fmodules -fprebuilt-module-path=./cache"
object_file_paths = []
def compile_module(source_file_path, module_identifier) -> None: