From 3c7afcf84c00828bf6901af62e9b2a0f3f63e761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dietmar=20K=C3=BChl?= Date: Sat, 18 Jan 2025 11:32:53 +0000 Subject: [PATCH] try to work around a TSan bug --- .github/workflows/ci_tests.yml | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 4fe7076..9505ec7 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -209,6 +209,7 @@ jobs: sudo apt-get update sudo apt-get install -y $CC sudo apt-get install -y $CXX + sudo sysctl vm.mmap_rnd_bits=28 $CC --version $CXX --version diff --git a/Makefile b/Makefile index a85eaa5..0956a84 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ default: compile compile: config #cmake --build $(BUILDDIR) -j - cmake --workflow --preset=appleclang-debug --fresh + cmake --workflow --preset=gcc-debug --fresh format: git clang-format main