From d8448cbce2a7d59282caddfb84a30c61bb879668 Mon Sep 17 00:00:00 2001 From: loox Date: Tue, 26 Nov 2019 11:25:34 +0100 Subject: [PATCH] disable compilation warnings in order to compile with recent GCC --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4edba2a..11811c2 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ else: kernel41 = None -CFLAGS = ['-Wall', '-Werror', '-Wextra', '-Wno-missing-field-initializers' ] +CFLAGS = ['-Wall', '-Werror', '-Wextra', '-Wno-missing-field-initializers', '-Wno-cast-function-type', '-Wno-format-truncation' ] classifiers = ['Development Status :: 3 - Alpha', 'Operating System :: POSIX :: Linux',