Skip to content

Commit

Permalink
Fixed build_locally.py to allow building debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed May 13, 2022
1 parent af7d746 commit 7f3c75f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions scripts/build_locally.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,9 @@ def run(
"--cmake-executable=" + cmake_executable,
]
cmake_args += [
"--build-type=" + build_type,
"--generator=" + build_system,
"--",
"-G",
build_system,
"-DCMAKE_BUILD_TYPE=" + build_type,
"-DCMAKE_C_COMPILER:PATH=" + c_compiler,
"-DCMAKE_CXX_COMPILER:PATH=" + cxx_compiler,
"-DDPCTL_ENABLE_L0_PROGRAM_CREATION=" + ("ON" if level_zero else "OFF"),
Expand Down

0 comments on commit 7f3c75f

Please sign in to comment.