From 5ce5a046d4d72858a0929465c36ec11ca80b5593 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 5 Aug 2023 17:59:08 +0200 Subject: ignore clang croaking about negative shifts in TYPE_MAX --- inc.mak | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inc.mak b/inc.mak index 4727ca0..b2e6376 100644 --- a/inc.mak +++ b/inc.mak @@ -19,6 +19,9 @@ CFLAGS += -DFUSE_USE_VERSION=26 # get compilation flags for filesystem CFLAGS += `getconf LFS_CFLAGS 2>/dev/null` +# ignore some warnings +CFLAGS += -Wno-shift-negative-value + # debug #CFLAGS += -I/usr/local/include/fuse #LDFLAGS = -lpq /usr/local/lib/libfuse.a -pthread -ldl -lrt -- cgit v1.2.3-54-g00ecf