Fix build script not compiling with debug symbols
This commit is contained in:
parent
d5b4281d36
commit
a9e0588878
2
build.py
2
build.py
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue