1
1
mirror of https://github.com/github/semantic.git synced 2024-12-12 14:45:40 +03:00
semantic/build/common.bzl

26 lines
588 B
Python
Raw Normal View History

2020-06-10 07:18:25 +03:00
# This file lets us share warnings and such across the project
STANDARD_GHC_WARNINGS = [
2020-06-23 16:45:10 +03:00
"-O0",
"-v1",
"-j8",
"-fdiagnostics-color=always",
"-ferror-spans",
2020-06-10 07:18:25 +03:00
"-Weverything",
"-Wno-missing-local-signatures",
"-Wno-missing-import-lists",
"-Wno-implicit-prelude",
"-Wno-safe",
"-Wno-unsafe",
"-Wno-name-shadowing",
"-Wno-monomorphism-restriction",
"-Wno-missed-specialisations",
"-Wno-all-missed-specialisations",
"-Wno-star-is-type",
"-Wno-missing-deriving-strategies",
]
2020-06-23 21:54:32 +03:00
STANDARD_EXECUTABLE_FLAGS = [
"-threaded",
]