666fc1266b
-- bc89d3221e3927d08881d75eeee0e8db862300fa by Benjamin Barenblat <bbaren@google.com>: Clean up C-style casts in `ABSL_ASSERT` PiperOrigin-RevId: 241932756 -- 17482daae4b3e2fc725b759586590ac466b72a1e by Jon Cohen <cohenjon@google.com>: Move Gtest-specific CMake code to its own directory PiperOrigin-RevId: 241920192 -- 9ae52b4f665625352c0a789cff884bde492c28f5 by CJ Johnson <johnsoncj@google.com>: Moves private data methods from InlinedVector to InlinedVector Storage in anticipation of migrating the Rep union type PiperOrigin-RevId: 241794144 -- 95315bc50a61a0aae4f171b44c2312158a43e72e by Jon Cohen <cohenjon@google.com>: Use /DNOMINMAX in Abseil tests. This offsets inlcudes of <windows.h> from gtest. PiperOrigin-RevId: 241790584 -- ee505c7f2ab99d29c165ea21a07190474f64053d by CJ Johnson <johnsoncj@google.com>: Adds inlined_vector_internal to the deps of inlined_vector in CMakeLists.txt PiperOrigin-RevId: 241775332 -- 94eb5165b49bab59ce7de143be38a4581d5658da by CJ Johnson <johnsoncj@google.com>: Migrates InlinedVector Storage to class Metadata for compatibility with the eventual member-wise migration to the new exception safe implementation PiperOrigin-RevId: 241633420 -- f99e172caad1ec8b35bf7bbabaf2833d55a6f055 by Abseil Team <absl-team@google.com>: Add MSVC specific linker flags only to MSVC builds. PiperOrigin-RevId: 241615711 -- 3ad19d2779281e945bdf56643dc5cee3f730eb4f by Abseil Team <absl-team@google.com>: Add a comment about per-process randomization of absl::Hash. PiperOrigin-RevId: 241583697 -- 8dfb02d725fee3528351b2da4ed32a7455f9858a by Tom Manshreck <shreck@google.com>: Internal change PiperOrigin-RevId: 241564734 GitOrigin-RevId: bc89d3221e3927d08881d75eeee0e8db862300fa Change-Id: Ibad3da416d08a96ec1f8313f8b519b4270b7e01a
216 lines
5.1 KiB
Python
216 lines
5.1 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-undef",
|
|
"-Wno-unknown-warning-option",
|
|
"-Wno-unreachable-code",
|
|
"-Wno-unused-macros",
|
|
"-Wno-weak-vtables",
|
|
"-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-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-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-undef",
|
|
"-Wno-unknown-warning-option",
|
|
"-Wno-unreachable-code",
|
|
"-Wno-unused-macros",
|
|
"-Wno-weak-vtables",
|
|
"-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-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",
|
|
"/wd4800",
|
|
]
|
|
|
|
ABSL_MSVC_LINKOPTS = [
|
|
"/ignore:4221",
|
|
]
|
|
|
|
ABSL_MSVC_TEST_FLAGS = [
|
|
"/wd4018",
|
|
"/wd4101",
|
|
"/wd4503",
|
|
"/DNOMINMAX",
|
|
]
|