27c2f6e2f3
-- 9fa04b5fb4b6aeb47226b9095b3bc36a53669c39 by Abseil Team <absl-team@google.com>: Release types/compare.h, which contains stand ins for three-way comparison result types from C++20. Use absl::weak_ordering for a three-way comparator in test-instance-tracker.h. PiperOrigin-RevId: 247290078 -- 70a762f4eb35ea1d5a5fcb3274a8086824a0b82c by Derek Mauro <dmauro@google.com>: Upgrade linux_clang-latest builds to LLVM r356814 and Bazel 0.25.0 PiperOrigin-RevId: 247250176 -- f305cd5c36561e4dbb69eb87568553ae5badcb15 by CJ Johnson <johnsoncj@google.com>: Remove argument deduction based on template template argument in InlinedVector/Storage PiperOrigin-RevId: 247232334 -- 2cab8e426838baceb7d08edb313416480d26aa5b by Eric Fiselier <ericwf@google.com>: Import of CCTZ from GitHub. PiperOrigin-RevId: 247140132 GitOrigin-RevId: 9fa04b5fb4b6aeb47226b9095b3bc36a53669c39 Change-Id: I373a7d9bc90befa2a9f06555cb8703610c0313b9
221 lines
5.2 KiB
Python
221 lines
5.2 KiB
Python
"""GENERATED! DO NOT MANUALLY EDIT THIS FILE.
|
|
|
|
(1) Edit absl/copts/copts.py.
|
|
(2) Run `python <path_to_absl>/copts/generate_copts.py`.
|
|
"""
|
|
|
|
ABSL_CLANG_CL_EXCEPTIONS_FLAGS = [
|
|
"/U_HAS_EXCEPTIONS",
|
|
"/D_HAS_EXCEPTIONS=1",
|
|
"/EHsc",
|
|
]
|
|
|
|
ABSL_CLANG_CL_FLAGS = [
|
|
"/W3",
|
|
"-Wno-c++98-compat-pedantic",
|
|
"-Wno-conversion",
|
|
"-Wno-covered-switch-default",
|
|
"-Wno-deprecated",
|
|
"-Wno-disabled-macro-expansion",
|
|
"-Wno-double-promotion",
|
|
"-Wno-comma",
|
|
"-Wno-extra-semi",
|
|
"-Wno-extra-semi-stmt",
|
|
"-Wno-packed",
|
|
"-Wno-padded",
|
|
"-Wno-sign-compare",
|
|
"-Wno-float-conversion",
|
|
"-Wno-float-equal",
|
|
"-Wno-format-nonliteral",
|
|
"-Wno-gcc-compat",
|
|
"-Wno-global-constructors",
|
|
"-Wno-exit-time-destructors",
|
|
"-Wno-nested-anon-types",
|
|
"-Wno-non-modular-include-in-module",
|
|
"-Wno-old-style-cast",
|
|
"-Wno-range-loop-analysis",
|
|
"-Wno-reserved-id-macro",
|
|
"-Wno-shorten-64-to-32",
|
|
"-Wno-switch-enum",
|
|
"-Wno-thread-safety-negative",
|
|
"-Wno-unknown-warning-option",
|
|
"-Wno-unreachable-code",
|
|
"-Wno-unused-macros",
|
|
"-Wno-weak-vtables",
|
|
"-Wno-zero-as-null-pointer-constant",
|
|
"-Wbitfield-enum-conversion",
|
|
"-Wbool-conversion",
|
|
"-Wconstant-conversion",
|
|
"-Wenum-conversion",
|
|
"-Wint-conversion",
|
|
"-Wliteral-conversion",
|
|
"-Wnon-literal-null-conversion",
|
|
"-Wnull-conversion",
|
|
"-Wobjc-literal-conversion",
|
|
"-Wno-sign-conversion",
|
|
"-Wstring-conversion",
|
|
"/DNOMINMAX",
|
|
"/DWIN32_LEAN_AND_MEAN",
|
|
"/D_CRT_SECURE_NO_WARNINGS",
|
|
"/D_SCL_SECURE_NO_WARNINGS",
|
|
"/D_ENABLE_EXTENDED_ALIGNED_STORAGE",
|
|
]
|
|
|
|
ABSL_CLANG_CL_TEST_FLAGS = [
|
|
"-Wno-c99-extensions",
|
|
"-Wno-deprecated-declarations",
|
|
"-Wno-missing-noreturn",
|
|
"-Wno-missing-prototypes",
|
|
"-Wno-missing-variable-declarations",
|
|
"-Wno-null-conversion",
|
|
"-Wno-shadow",
|
|
"-Wno-shift-sign-overflow",
|
|
"-Wno-sign-compare",
|
|
"-Wno-unused-function",
|
|
"-Wno-unused-member-function",
|
|
"-Wno-unused-parameter",
|
|
"-Wno-unused-private-field",
|
|
"-Wno-unused-template",
|
|
"-Wno-used-but-marked-unused",
|
|
"-Wno-zero-as-null-pointer-constant",
|
|
"-Wno-gnu-include-next",
|
|
"-Wno-gnu-zero-variadic-macro-arguments",
|
|
]
|
|
|
|
ABSL_GCC_EXCEPTIONS_FLAGS = [
|
|
"-fexceptions",
|
|
]
|
|
|
|
ABSL_GCC_FLAGS = [
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Wcast-qual",
|
|
"-Wconversion-null",
|
|
"-Wmissing-declarations",
|
|
"-Woverlength-strings",
|
|
"-Wpointer-arith",
|
|
"-Wunused-local-typedefs",
|
|
"-Wunused-result",
|
|
"-Wvarargs",
|
|
"-Wvla",
|
|
"-Wwrite-strings",
|
|
"-Wno-missing-field-initializers",
|
|
"-Wno-sign-compare",
|
|
]
|
|
|
|
ABSL_GCC_TEST_FLAGS = [
|
|
"-Wno-conversion-null",
|
|
"-Wno-deprecated-declarations",
|
|
"-Wno-missing-declarations",
|
|
"-Wno-sign-compare",
|
|
"-Wno-unused-function",
|
|
"-Wno-unused-parameter",
|
|
"-Wno-unused-private-field",
|
|
]
|
|
|
|
ABSL_LLVM_EXCEPTIONS_FLAGS = [
|
|
"-fexceptions",
|
|
]
|
|
|
|
ABSL_LLVM_FLAGS = [
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Weverything",
|
|
"-Wno-c++98-compat-pedantic",
|
|
"-Wno-conversion",
|
|
"-Wno-covered-switch-default",
|
|
"-Wno-deprecated",
|
|
"-Wno-disabled-macro-expansion",
|
|
"-Wno-double-promotion",
|
|
"-Wno-comma",
|
|
"-Wno-extra-semi",
|
|
"-Wno-extra-semi-stmt",
|
|
"-Wno-packed",
|
|
"-Wno-padded",
|
|
"-Wno-sign-compare",
|
|
"-Wno-float-conversion",
|
|
"-Wno-float-equal",
|
|
"-Wno-format-nonliteral",
|
|
"-Wno-gcc-compat",
|
|
"-Wno-global-constructors",
|
|
"-Wno-exit-time-destructors",
|
|
"-Wno-nested-anon-types",
|
|
"-Wno-non-modular-include-in-module",
|
|
"-Wno-old-style-cast",
|
|
"-Wno-range-loop-analysis",
|
|
"-Wno-reserved-id-macro",
|
|
"-Wno-shorten-64-to-32",
|
|
"-Wno-switch-enum",
|
|
"-Wno-thread-safety-negative",
|
|
"-Wno-unknown-warning-option",
|
|
"-Wno-unreachable-code",
|
|
"-Wno-unused-macros",
|
|
"-Wno-weak-vtables",
|
|
"-Wno-zero-as-null-pointer-constant",
|
|
"-Wbitfield-enum-conversion",
|
|
"-Wbool-conversion",
|
|
"-Wconstant-conversion",
|
|
"-Wenum-conversion",
|
|
"-Wint-conversion",
|
|
"-Wliteral-conversion",
|
|
"-Wnon-literal-null-conversion",
|
|
"-Wnull-conversion",
|
|
"-Wobjc-literal-conversion",
|
|
"-Wno-sign-conversion",
|
|
"-Wstring-conversion",
|
|
]
|
|
|
|
ABSL_LLVM_TEST_FLAGS = [
|
|
"-Wno-c99-extensions",
|
|
"-Wno-deprecated-declarations",
|
|
"-Wno-missing-noreturn",
|
|
"-Wno-missing-prototypes",
|
|
"-Wno-missing-variable-declarations",
|
|
"-Wno-null-conversion",
|
|
"-Wno-shadow",
|
|
"-Wno-shift-sign-overflow",
|
|
"-Wno-sign-compare",
|
|
"-Wno-unused-function",
|
|
"-Wno-unused-member-function",
|
|
"-Wno-unused-parameter",
|
|
"-Wno-unused-private-field",
|
|
"-Wno-unused-template",
|
|
"-Wno-used-but-marked-unused",
|
|
"-Wno-zero-as-null-pointer-constant",
|
|
"-Wno-gnu-include-next",
|
|
"-Wno-gnu-zero-variadic-macro-arguments",
|
|
]
|
|
|
|
ABSL_MSVC_EXCEPTIONS_FLAGS = [
|
|
"/U_HAS_EXCEPTIONS",
|
|
"/D_HAS_EXCEPTIONS=1",
|
|
"/EHsc",
|
|
]
|
|
|
|
ABSL_MSVC_FLAGS = [
|
|
"/W3",
|
|
"/DNOMINMAX",
|
|
"/DWIN32_LEAN_AND_MEAN",
|
|
"/D_CRT_SECURE_NO_WARNINGS",
|
|
"/D_SCL_SECURE_NO_WARNINGS",
|
|
"/D_ENABLE_EXTENDED_ALIGNED_STORAGE",
|
|
"/wd4005",
|
|
"/wd4068",
|
|
"/wd4180",
|
|
"/wd4244",
|
|
"/wd4267",
|
|
"/wd4503",
|
|
"/wd4800",
|
|
]
|
|
|
|
ABSL_MSVC_LINKOPTS = [
|
|
"-ignore:4221",
|
|
]
|
|
|
|
ABSL_MSVC_TEST_FLAGS = [
|
|
"/wd4018",
|
|
"/wd4101",
|
|
"/wd4503",
|
|
"/wd4996",
|
|
"/DNOMINMAX",
|
|
]
|