From c6ab56e9835230ca4a18b45d09d6713f7f44d9f7 Mon Sep 17 00:00:00 2001 From: Antony Polukhin Date: Sun, 25 Apr 2021 21:17:35 +0300 Subject: [PATCH] memory sanitizer is triggered by libstdc++, so disable it --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5a00e4..5652db0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,8 +49,8 @@ jobs: compiler: clang++-10 cxxstd: "03,11,14,17,2a" os: ubuntu-20.04 - cxxflags: "cxxflags=-fsanitize=undefined,integer,memory -fno-sanitize-recover=undefined" - linkflags: "linkflags=-fsanitize=undefined,integer,memory" + cxxflags: "cxxflags=-fsanitize=address,undefined,integer -fno-sanitize-recover=undefined" + linkflags: "linkflags=-fsanitize=address,undefined,integer" - toolset: clang cxxstd: "03,11,14,17,2a" os: macos-10.15