From b3af75e37a7b4fb6c4032f7125da7a2266e5b6eb Mon Sep 17 00:00:00 2001 From: Krzysztof Kondrak Date: Mon, 18 May 2020 17:34:03 +0200 Subject: [PATCH] Disable nullability completeness warning on MacOS when building with Command Line Developer Tools. --- macos/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macos/Makefile b/macos/Makefile index 62365ca5..f1c16659 100644 --- a/macos/Makefile +++ b/macos/Makefile @@ -3,7 +3,7 @@ # CC=gcc -BASE_CFLAGS=-Wno-unused-result -Wno-dangling-else -Wno-pointer-sign -Wno-pointer-bool-conversion +BASE_CFLAGS=-Wno-unused-result -Wno-dangling-else -Wno-pointer-sign -Wno-pointer-bool-conversion -Wno-nullability-completeness RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG -O3 DEBUG_CFLAGS=$(BASE_CFLAGS) -g -D_DEBUG LDFLAGS=-framework CoreAudio