Skip to content

Commit

Permalink
switch to debug build as we no longer target windows
Browse files Browse the repository at this point in the history
  • Loading branch information
N-Coder committed Sep 15, 2023
1 parent 6701687 commit 9a0508b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ def initialize(self, version, build_data):
with open(comp_spec_cmake, "wt") as f:
f.writelines("# " + l if "march=native" in l and not l.strip().startswith("#") else l for l in lines)

CONFIG = "Release"
CONFIG = "Debug"
flags = [
"-DCMAKE_BUILD_TYPE=" + CONFIG, "-DBUILD_SHARED_LIBS=ON", "-DCMAKE_INSTALL_PREFIX=%s" % self.cmake_install_dir,
# "-DOGDF_USE_ASSERT_EXCEPTIONS=ON", # "-DOGDF_USE_ASSERT_EXCEPTIONS_WITH=ON_LIBUNWIND",
"-DOGDF_USE_ASSERT_EXCEPTIONS=ON", # "-DOGDF_USE_ASSERT_EXCEPTIONS_WITH=ON_LIBUNWIND",
"-DOGDF_MEMORY_MANAGER=POOL_TS",
# "-DOGDF_MEMORY_MANAGER=MALLOC_TS", "-DOGDF_LEAK_CHECK=ON",
"-DOGDF_WARNING_ERRORS=OFF",
Expand Down

0 comments on commit 9a0508b

Please sign in to comment.