From 59390fd992be31c73dc855c01c697935575bd4c5 Mon Sep 17 00:00:00 2001 From: tienntr <93871686+tienntr@users.noreply.github.com> Date: Wed, 13 Dec 2023 10:09:12 +0000 Subject: [PATCH] Disable libsanitizer in Linux build to avoid build error GCC 13 has build error if libsanitizer is enabled. --- .github/workflows/build-centos7.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-centos7.yaml b/.github/workflows/build-centos7.yaml index a50c18e9bf5..f20fc87d77e 100644 --- a/.github/workflows/build-centos7.yaml +++ b/.github/workflows/build-centos7.yaml @@ -54,7 +54,7 @@ jobs: - name: Configure Linux toolchain run: | scl enable devtoolset-11 -- \ - ./configure --prefix=/opt/riscv --enable-libsanitizer --enable-llvm --with-cmodel=medany + ./configure --prefix=/opt/riscv --enable-llvm --with-cmodel=medany - name: Build Linux toolchain run: scl enable devtoolset-11 -- make -j $(nproc) linux