From cb606039505909f3054a51af0e4cf52d09ba78b6 Mon Sep 17 00:00:00 2001 From: John Reiser Date: Sun, 7 Mar 2021 09:33:16 -0800 Subject: [PATCH] Turn off BUILD_TYPE_DEBUG to enable CI build amd64-win64-gcc-9 to pass. modified: Makefile --- src/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 552535cb..7f653602 100644 --- a/src/Makefile +++ b/src/Makefile @@ -9,7 +9,10 @@ MAKEFLAGS += -r export SHELL = /bin/sh # build configuration options for this Makefile -BUILD_TYPE_DEBUG ?= 1 +# 2021-03-07 BUILD_TYPE_DEBUG is off because CI build amd64-win64-gcc-9 +# fails because it lacks libsantizer.spec, which is required +# by -fsanitize=undefined which is turned on by BUILD_TYPE_DEBUG. +BUILD_TYPE_DEBUG ?= 0 BUILD_TYPE_SANITIZE ?= 0 BUILD_USE_DEPEND ?= 1