From 583f42b1312a6dd0b7adc1201ea5a13f2b3e8275 Mon Sep 17 00:00:00 2001 From: Dave Andreoli Date: Fri, 17 Aug 2018 10:52:42 +0200 Subject: [PATCH] Setup warnings-- --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 885acd6..82dfe26 100755 --- a/setup.py +++ b/setup.py @@ -211,6 +211,8 @@ ext_modules = [] py_modules = [] packages = ["efl"] common_cflags = [ + "-fno-var-tracking-assignments", # seems to lower the mem used during build + "-Wno-misleading-indentation", # not needed (we don't indent the C code) "-Wno-deprecated-declarations", # we bind deprecated functions "-Wno-unused-variable", # eo_instance_from_object() is unused "-Wno-format-security", # some cc don't like the way cython use EINA_LOG macros