Commit 05780b63 authored by Guillaume Quintard's avatar Guillaume Quintard

disable -Wcast-qual because of musl

parent b46a77b7
......@@ -44,7 +44,6 @@ DESIRABLE_OPTIONS = [
DESIRABLE_WFLAGS = [
"-Wcast-align",
"-Wcast-qual",
"-Wchar-subscripts",
"-Wempty-body",
"-Wextra",
......@@ -69,6 +68,7 @@ DESIRABLE_WFLAGS = [
]
UNDESIRABLE_WFLAGS = [
"-Wno-cast-qual", # GCC complains about musl::sched.h
"-Wno-thread-safety", # Does not understand our mutexs are wrapped
"-Wno-old-style-definition", # Does not like vgz
"-Wno-sign-compare", # Fixable
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment