From 31c19825354da1556156b7f480befe320fc0be5e Mon Sep 17 00:00:00 2001 From: akash-akya Date: Thu, 27 Jul 2023 23:06:38 +0530 Subject: [PATCH] Remove UB sanitizer for macos --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 6549294..2e0a47f 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,6 @@ UNAME := $(shell uname) CFLAGS ?= -Wall -Werror -Wno-unused-parameter -pedantic -std=c99 -O2 ifeq ($(UNAME), Darwin) - CFLAGS += -fsanitize=undefined TARGET_CFLAGS ?= -fPIC -undefined dynamic_lookup -dynamiclib -Wextra endif